标签: entity-framework-core
如何动态运行以下代码:
_context.TableName.First().Value;
我尝试:
_context.GetType().GetProperties().Where(p => p.Name == "PropertyName").First().GetValue(_context, null)
但是我不能调用First()方法。