1
我想編寫一個表達式來檢索屬性中的屬性。我的2類:表達式樹中的嵌套屬性
public class BusinessType
{
public string Proprietor
{
get { return "Proprietor"; }
}
}
public class VendorApplicationViewModel
{
public List<BusinessType> BusinessClassification { get; set; }
}
public static IHtmlString RadioListForIEnum<TModel, TProperty>(this HtmlHelper<TModel> htmlhelper,
Expression<Func<TModel, TProperty>> expression)
{
var prop = ModelMetadata.FromLambdaExpression(expression, htmlhelper.ViewData);
//Func<TModel2, TProperty2> nestedProperty =
return null;
}
我寧願失去了,我怎麼能做到這一點。此外,我對錶達式樹很新,對教程有很好的建議,不勝感激。謝謝
它極難破譯你問這裏。 – nawfal