我想使用 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。
在视图中我没有使用所有属性,所以如何检查我使用的反射?