1

我的问题很简单。

我想为所有对象的属性值运行。例如:

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 ) 
}

我怎么能做我想做的事?这种方式或其他方式,

4

1 回答 1

2

我没有方便的开发环境,但无论如何尝试一下

@{ var emptyViewModel = new Product(); 
   var props = obj.GetType().GetProperties();

foreach(var prop in props)
{   
    @Html.LabelFor(model => emptyViewModel, prop.Name.ToString())  
}
}
于 2012-05-14T09:46:04.723 回答