我想使用Visual Studio 2012中的RazorGenerator将我的ASP.NET MVC3视图编译为单独的.dll文件。
我的问题是:如何查看视图中使用的属性?
我的模特:
public int PproductID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Category { get; set; }
public decimal Price { get; set; }
来自RazorGenerator的my result。
在视图中我没有使用所有属性,所以如何检查我使用的反射?