我想在实体框架中获取表数据模型的属性名称。我有这个代码
var properties = context.GetType().GetProperties(BindingFlags.DeclaredOnly |
BindingFlags.Public |
BindingFlags.Instance);
我想要的只是将此代码包含在如下方法中,以便拥有一个定义表模型的字符串变量:
MyMethod (string category)
{
var properties = "category".GetType().GetProperties(BindingFlags.DeclaredOnly |
BindingFlags.Public |
BindingFlags.Instance);
......
......
}
是否可以?提前感谢