using Microsoft.Extensions.DependencyInjection;
using Znyc.Recruitment.Admin.Commons.Core.DataManager;
using Znyc.Recruitment.Admin.Commons.DataManager;
using Znyc.Recruitment.Admin.Commons.Extensions;
using Znyc.Recruitment.Admin.Commons.IDbContext;
using Znyc.Recruitment.Admin.Commons.Options;
namespace Znyc.Recruitment.Admin.Commons.DbContextCore
{
///
/// 上下文工厂类
///
public class DbContextFactory : IDbContextFactory
{
///
///
public static DbContextFactory Instance => new();
///
/// 服务
///
public IServiceCollection ServiceCollection { get; set; }
///
/// 创建数据库读写上下文
///
/// 指定读、写操作
///
public BaseDbContext CreateContext(WriteAndReadEnum writeAndRead)
{
DbConnectionOptions dbConnectionOptions = new DbConnectionOptions();
switch (writeAndRead)
{
case WriteAndReadEnum.Write:
dbConnectionOptions = DBServerProvider.GeDbConnectionOptions();
break;
case WriteAndReadEnum.Read:
dbConnectionOptions = DBServerProvider.GeDbConnectionOptions(false);
break;
default:
dbConnectionOptions = DBServerProvider.GeDbConnectionOptions();
break;
}
return new BaseDbContext(dbConnectionOptions);
}
///
/// 创建数据库读写上下文
///
///
/// 指定读、写操作
///
public BaseDbContext CreateContext(WriteAndReadEnum writeAndRead)
{
DbConnectionOptions dbConnectionOptions = new DbConnectionOptions();
switch (writeAndRead)
{
case WriteAndReadEnum.Write:
dbConnectionOptions = DBServerProvider.GeDbConnectionOptions();
break;
case WriteAndReadEnum.Read:
dbConnectionOptions = DBServerProvider.GeDbConnectionOptions(false);
break;
default:
dbConnectionOptions = DBServerProvider.GeDbConnectionOptions();
break;
}
return new BaseDbContext(dbConnectionOptions);
}
///
/// 向服务注入上下文
///
///
///
public void AddDbContext(DbContextOption option)
where TContext : BaseDbContext, IDbContextCore
{
ServiceCollection.AddDbContext(option);
}
///
/// 向服务注入上下文
///
/// 上下文接口
/// 上下文实现类
///
public void AddDbContext(DbContextOption option)
where ITContext : IDbContextCore
where TContext : BaseDbContext, ITContext
{
ServiceCollection.AddDbContext(option);
}
}
}