gpt4 book ai didi

c# - 如何根据表名在 DbContext 中选择正确的 DbSet

转载 作者:太空狗 更新时间:2023-10-29 17:35:49 25 4
gpt4 key购买 nike

假设我有一个包含以下 DbSet 的 DbContext

class Amimals : DbContext
{
public DbSet<Dog> Dogs { get; set; }
public DbSet<Cat> Cats { get; set; }
}

在每个 EntityTypeConfiguration 中,我正在为每个 DbSet 定义表

class DogConfig : EntityTypeConfiguration
{
public DogConfig()
{
this.ToTable("DOG_TABLE");
...
}
}

现在,如果我有表名和 DbContext,我该如何获取和使用正确的 DbSet?

void foo()
{
string tableName = this.GetTableName();
using(Animals context = new Animals())
{
/* Made up solution */
DbSet animalContext = context.Where(c => c.TableName == tableName);
...
/* Do something with DbSet */
...
}
}

最佳答案

您可以通过 Type 从 DbContext 获取 DbSet使用方法 DbContext.Set(Type entityType) .因此,如果您将模型类名称作为字符串,您应该对实际的 clr 类型进行一些映射。

例如:

string tableName = "Cat";
var type = Assembly.GetExecutingAssembly()
.GetTypes()
.FirstOrDefault(t => t.Name == tableName);

DbSet catContent;
if(type != null)
catContext = context.Set(type);

您还可以使用完整的程序集限定名称 Type.GetType(' ... ') 从字符串中获取类型

如果您可以以某种方式以通用方式存储配置并使用通用的 context.Set<T>() 会更容易方法。

关于c# - 如何根据表名在 DbContext 中选择正确的 DbSet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26305737/

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