我的问题很简单。
我想为所有对象的属性值运行。例如:
public class Product
{
public int ProductId {get;set;}
public string Name {get;set;}
public string Content {get;set;}
}
var obj = new Product();
var props = obj.GetType().GetProperties();
foreach(var prop in props)
{
@Html.LabelFor( ....... ) // Need to run for active property.
// such as @Html.LabelFor( x => prop )
}
我怎么能做我想做的事?这种方式或其他方式,