thomasbartsch.net
Lambda expression in @Html.DisplayFor(modelItem => item.FirstName) | Thomas Bartsch | Having fun with dev
I found a very good explanation about the Lambda expression in @Html.DisplayFor(modelItem => item.FirstName), see Link below. Summary As the author wrote, a lambda expression is a way to write an anonymous function. As a summary you can find here the lambda expression and its anonymous function it could be translated logically. Common lambda expression (x => x.Name) …