程序员人生 网站导航

Lambda Func<T,TKey> 取值类型时得到字段名的一种方法

栏目:php教程时间:2015-02-04 09:21:41

@Html.InputTextFor(s => s.name)


获得s.name中的name


dynamic exp = expression.Body.GetType().GetProperty("Member").GetValue(expression.Body, null);
var strName = (string)exp.Name;


strName为name 


------分隔线----------------------------
------分隔线----------------------------

最新技术推荐