实体框架和多种模式

2023-12-22

我正在尝试设置 dbContext,以便它可以处理单个 Oracle 数据库中的多个模式。我不需要一个单一的 dbContext 文件,所以我想出了以下内容:

public class oraDbContext : DbContext
{
    static oraDbContext() {
        Database.SetInitializer<oraDbContext>(null);
    }

    public oraDbContext(string connName)
        : base("Name=" + connName) { }

    public _schema1 schema1 = _schema1.Instance;
    public _schema2 schema2 = _schema2.Instance;

    protected override void OnModelCreating(DbModelBuilder modelBuilder) {
        schema1.OnModelCreating(modelBuilder);
        schema2.OnModelCreating(modelBuilder);
    }
}

架构文件如下所示:

public sealed class _schema1
{
    private static readonly _schema1 instance = new _schema1();

    static _schema1() { }
    private _schema1() { }

    public static _schema1 Instance {
        get {
            return instance;
        }
    }

    public DbSet<someTable> someTable { get; set; }

    internal void OnModelCreating(DbModelBuilder modelBuilder) {
        modelBuilder.Configurations.Add(new someTableMap());
    }
}

但是,当我尝试执行查询时,出现错误:Value cannot be null。它所指的值是someTable_schema1 中的属性。

A.我怎样才能解决这个问题?

B.有更好的解决方案吗?

Edit:我在这里想要的是编写如下代码的能力 -

var query1 = from p in db.schema1.someTable
             select p;
var query2 = from p in db.schema2.someTable
             select p;

其中 someTable 在两个模式中是相同的。在我们的数据库中,我们有几个具有完全相同的表的模式,这些表具有相同或几乎相同的列。我不想为每个模式创建单独的 dbContext,因为如果我创建从 5 个模式提取的查询,这可能意味着 5 个不同的连接。如果我用直接 SQL 编写相同的查询,我可以使用单个连接从 5 个不同的模式中提取数据,这就是我想要在这里完成的任务。


在对实体框架进行一些研究时,我发现了以下帖子:

http://romiller.com/2011/05/23/ef-4-1-multi-tenant-with-code-first/ http://romiller.com/2011/05/23/ef-4-1-multi-tenant-with-code-first/

它并没有给我一个单独的 dbContext 来使用,但它只使用一个连接(这是我不想使用多个 dbContext 的原因)。设置后如下代码:

public class oraDbContext : DbContext
{
    static oraDbContext() {
        Database.SetInitializer<oraDbContext>(null);
    }

    private oraDbContext(DbConnection connection, DbCompiledModel model)
        : base(connection, model, contextOwnsConnection: false) { }

    public DbSet<SomeTable1> SomeTable1 { get; set; }
    public DbSet<SomeTable2> SomeTable2 { get; set; }

    private static ConcurrentDictionary<Tuple<string, string>, DbCompiledModel> modelCache = new ConcurrentDictionary<Tuple<string, string>, DbCompiledModel>();

    public static oraDbContext Create(string schemaName, DbConnection connection) {
        var compiledModel = modelCache.GetOrAdd(
            Tuple.Create(connection.ConnectionString, schemaName),
            t =>
            {
                var builder = new DbModelBuilder();
                builder.Configurations.Add<SomeTable1>(new SomeTable1Map(schemaName));
                builder.Configurations.Add<SomeTable2>(new SomeTable2Map(schemaName));

                var model = builder.Build(connection);
                return model.Compile();
            });

        return new oraDbContext(connection, compiledModel);
    }
}

这当然要求我的映射文件设置如下:

public class DailyDependencyTableMap : EntityTypeConfiguration<DailyDependencyTable>
{
    public SomeTableMap(string schemaName) {
        this.ToTable("SOME_TABLE_1", schemaName.ToUpper());

        //Map other properties and stuff
    }
}

编写使用多个模式的查询有点烦人,但目前它可以满足我的需要:

using (var connection = new OracleConnection("a connection string")) {
    using (var schema1 = oraDbContext.Create("SCHEMA1", connection))
    using (var schema2 = oraDbContext.Create("SCHEMA2", connection)) {

        var query = ((from a in schema1.SomeTable1 select new { a.Field1 }).ToList())
             .Concat((from b in schema2.SomeTable1 select new { b.Field1 }).ToList())
    }
}

 

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

实体框架和多种模式 的相关文章

随机推荐