You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
Hey, not 100% sure if this an MVC issue or Roslyn issue, but the issue exists when using DotNetCompilerPlatform 1.0.0.0 and MVC 5.2.3.0
The issue is that array variables used in an array get the wrong name (the end up being prefixed with "CS$<>8__locals1.") when used with HtmlHelper expression methods, eg Html.NameFor()
Steps to reproduce:
In VS2015 create a new MVC5 project using the ASP.NET 4.6 template "MVC" (which already has Microsoft.CodeDom.Providers.DotNetCompilerPlatform installed)
Replace the content /Views/Home/Index.cshtml with the razor code below
Start the project and view the result in a browser.
@{
Layout = null;
var someArray = new[]
{
new
{
someProperty = ""
}
};
}
<html><body>
@Html.NameFor(_ => someArray[0].someProperty)<br/>
@for (var i = 0; i <someArray.Length;++i){@Html.NameFor(_ => someArray[i].someProperty)<br/>
}
</body></html>
The content of the page looks like the following, when the two rows of the output should be identical.