20 lines
533 B
C#
20 lines
533 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using KingInfoWebApi.Core.Extensions.AutofacManager;
|
|
using KingInfoWebApi.Core.DBManager;
|
|
using KingInfoWebApi.Entity.SystemModels;
|
|
using System.Reflection.Emit;
|
|
using KingInfoWebApi.Core.DbSqlSugar;
|
|
|
|
namespace KingInfoWebApi.Core.EFDbContext
|
|
{
|
|
public class SysDbContext : BaseDbContext, IDependency
|
|
{
|
|
public SysDbContext() : base() {
|
|
base.SqlSugarClient = DbManger.SysDbContext;
|
|
}
|
|
}
|
|
}
|