0

我正在使用 IDbcontext 来访问我的数据库

   public sealed class DbContext : IDbContext
{
    private bool disposed;
    private SqlConnection connection;

    public DbContext(string connectionString)
    {
        connection = new SqlConnection(connectionString);
    }

    public IDbConnection Connection
    {
        get
        {
            if (disposed) throw new ObjectDisposedException(GetType().Name);

            return connection;
        }
    }

    public IDbTransaction CreateOpenedTransaction()
    {
        if (connection.State != ConnectionState.Open)
            Connection.Open();
        return Connection.BeginTransaction();
    }

    public IEnumerable<T> ExecuteProcedure<T>(string procedure, dynamic param = null, IDbTransaction transaction = null)
    {
        if (connection.State == ConnectionState.Closed)
        {
            connection.Open();
        }

        return Dapper.SqlMapper.Query<T>(connection, procedure, param, transaction,
            commandType: CommandType.StoredProcedure);
    }

    public int ExecuteProcedure(string procedure, dynamic param = null, IDbTransaction transaction = null)
    {
        if (connection.State == ConnectionState.Closed)
        {
            connection.Open();
        }

        return Dapper.SqlMapper.Execute(connection, procedure, param, transaction,
            commandType: CommandType.StoredProcedure);
    }

    public void Dispose()
    {
        Debug.WriteLine("** Disposing DbContext");

        if (disposed) return;

        if (connection != null)
        {
            connection.Dispose();
            connection = null;
        }

        disposed = true;
    }
}

我有 2 个数据库“第一个”和“第二个”

在决定拳头的依赖时,我使用

 builder.Register<IDbContext>(c =>
          new DbContext(ConfigurationManager.ConnectionStrings["first"].ConnectionString))
          .InstancePerDependency();

所以我需要补充:

builder.Register<IDbContext>(c =>
              new DbContext(ConfigurationManager.ConnectionStrings["second"].ConnectionString))

          .InstancePerDependency();

我需要为 Dbcontext 创建一个工厂并将 NamedResolve 用于 autofac,我该怎么做?

4

1 回答 1

3
public class DbContextFactory
{
    private ILifetimeScope m_RootLifetimeScope;

    public DbContextFactory(ILifetimeScope rootLifetimeScope)
    {
        m_RootLifetimeScope = rootLifetimeScope;
    }

    public IDbContext CreateDbContext()
    {
        if (logic for selection first dbcontext)
        {
            return m_RootLifetimeScope.ResolveNamed<IDbContext>("first");
        }
        else if (logic for selection second dbcontext)
        {
            return m_RootLifetimeScope.ResolveNamed<IDbContext>("second");
        }
        else 
        {
            throw new NotSupportedException();
        }
    }
}

//registration

builder.RegisterType<DbContextFactory>().SingleInstance();

//using

var factory = yourContainer.Resolve<DbContextFactory>();
var context = factory.CreateDbContext();
于 2013-07-04T16:01:56.607 回答