I have very strict naming conventions for my models and I am wondering if I can leverage this via display templates for common fields like - WebsiteUrl, IsActive, UpdateDate, InsertDate?
Is it possible to create a Display Template based on a property's name?
EDIT:
I am aware that I can achieve this using something like this:
@Html.DisplayFor(model => model.Farmer.WebsiteUrl, "WebsiteUrl")
I am just wondering if there is a more strongly typed way of doing it.