gpt4 book ai didi

linq-to-entities - 适用于所有实体的 Entity Framework 动态 DbSet

转载 作者:行者123 更新时间:2023-12-03 16:45:19 25 4
gpt4 key购买 nike

我有一个用 Entity Framework 映射的数据库,

我需要实现一个通用方法来根据我传递的参数获取项目列表:

getGenericList("product"); // returns the list of products
getGenericList("customer"); // returns the list of customers

我需要动态获取 dbSet .我的方法是这样实现的:

public static List<object> getGenericList(string entityType)
{
List<object> myDynamicList = new List<object>();
using (cduContext db = new cduContext())
{
DbSet dbSet = db.getDBSet(entityType);
var myDynamicList = dbSet.Select(p => p).ToList();
}
return new List<object>();
}

我的 dbSets首先由 EF 代码自动生成:

public DbSet<Product> Products { get; set; }
public DbSet<Custommer> Custommers { get; set; }

我的 getDBSet(entityType)方法在上下文中实现,如下所示:

public DbSet<T> getDBSet<T>(string entityName) where T : class
{
switch (entityName)
{

case "product":
return Products;

case "custommer":
return Custommers;

然后我得到了这个错误:

Cannot implicitly convert type 'System.Data.Entity.DbSet' to 'System.Data.Entity.DbSet'



请有任何想法!?

注意,方法 Set()dbContext不行;应该明确给出类型......

最佳答案

最好远离字符串作为类型并将它们映射到真正的类型;那是一种代码气味。相反,使用类型本身。无论哪种方式,让我们重构使用 getGenericList() 的代码使用泛型的方法。如果无法摆脱字符串,请在调用 getGenericList() 的代码中进行映射。与在该方法内进行映射相反,因为我们遵循您提出的模式。

另请注意,在您原来的 getGenericList() 中您总是返回一个空列表,而不是您通过 EF 获得的列表。您还使用了 2 个不同的 myDynamicList变量;外面的一个被 using 范围内的一个屏蔽了这就是为什么您不会收到编译器错误的原因。曾经using超出范围,内部 myDynamicList也超出了范围。我已经在这里解决了这个问题。

public static List<T> getGenericList<T>()
{
List<T> myDynamicList;

using (cduContext db = new cduContext())
{
// consider using exception handling here as GetDbSet might get an invalid type
DbSet dbSet = db.GetDbSet<T>();
myDynamicList = dbSet.Select(p => p).ToList();
}

if (myDynamicList != null && myDynamicList.Count() > 0)
{
return myDynamicList;
}
return new List<T>();
}

// in your context class
public DbSet<T> GetDbSet<T>() where T : class
{
return this.Set<T>();
}

// this is the code that calls getGenericList(); put this inside a function somewhere.
// entityName holds a string value, set previously
switch(entityName.ToLower()) // making entityName case insensitive
{
case "product":
return getGenericList<Product>();

case "customer":
return getGenericList<Customer>();
}

希望您不会有太多要映射的实体类型,否则最终会得到一个巨大的 switch陈述。同样,如果您使用的是 switch声明,一般来说,这可能表明您需要重新考虑您的方法。

关于linq-to-entities - 适用于所有实体的 Entity Framework 动态 DbSet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16063526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com