Take into account a model class with a property PartnerName
on it.
In this case looks like these two code produce the same results:
@Model.PartnerName
@Html.DisplayFor(m => m.PartnerName)
Is there any advantages in using one against the other? Because the first one is way more cleaner.
Edit And just to be clear I'm talking about this specific overload.