我的viewmodel中有一些属性。在运行时,我需要在该viewmodel中添加一个属性。
例如:
var avm= new AnalysisViewModel();
foreach (var grades in gradeList)
{
avm = new AnalysisViewModel
{
InfractionAverage = searchResult.Where(x=>x.GradeId == grades),
//Here i want to add one move property and want to assign value for my list.
};
}
请指导我如何达到这个要求
答案 0 :(得分:0)
嗯尝试使用PropertyBuilder。 http://msdn.microsoft.com/en-us/library/system.reflection.emit.propertybuilder.aspx