2023-07-29 10:19:42 +08:00
|
|
|
|
using Hncore.Infrastructure.EF;
|
|
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Hncore.Pass.Manage.Repository
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// EF数据库上下文类
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
///
|
|
|
|
|
|
public class EfDbContext : DbContextBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public DbContext DbContext => this;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 构造函数
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="options">上下文实体</param>
|
|
|
|
|
|
/// <param name="httpContextAccessor">http请求上下文</param>
|
|
|
|
|
|
public EfDbContext(DbContextOptions<EfDbContext> options, IHttpContextAccessor httpContextAccessor) :
|
|
|
|
|
|
base(options, httpContextAccessor)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建映射
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="modelBuilder"></param>
|
|
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
|
|
|
|
{
|
|
|
|
|
|
modelBuilder.AutoMap(typeof(EfDbContext));
|
|
|
|
|
|
|
|
|
|
|
|
base.OnModelCreating(modelBuilder);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|