Especially about the "SA1126: PrefixCallsCorrectly" rule which tells us to use "this." prefix for instance members.
Should I follow these rules in the Razor syntax?
Example:
<span>Name: @this.Model.Name</span>
Or:
<span>@this.Html.DisplayFor(m => m.Name)</span>
You may notice that the "this." is ineffective here (I'm agree). I want to follow a rule which is applicable for all my everyday codes.
And doesn't StyleCop check the Razor files?