从dbset core 2.1获取属性值

时间:2018-08-14 13:59:31

标签: entity-framework-core

如何动态运行以下代码:

_context.TableName.First().Value;

我尝试:

_context.GetType().GetProperties().Where(p => p.Name == "PropertyName").First().GetValue(_context, null)

但是我不能调用First()方法。

0 个答案:

没有答案