如何将动态实体设置为dbcontext Entity Framework Core?

时间:2017-12-29 02:22:34

标签: c# asp.net-web-api .net-core entity-framework-core asp.net-core-webapi

我有一个接收像string这样的实体的方法来返回该实体的列表。

我想要的是动态设置实体并返回结果。

我需要的是这样的事情:

DbContext.Set <Type.GetType("Entity")>().Select(e => e);

这是我得到的错误:

Error

这样做可能不正确。

Set方法来自Entity Framework Core。

Set Method

0 个答案:

没有答案