using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yi.Framework.SqlSugarCore.Abstractions { /// /// SqlSugar数据库上下文提供者接口 /// /// 数据库上下文类型 public interface ISugarDbContextProvider where TDbContext : ISqlSugarDbContext { /// /// 异步获取数据库上下文实例 /// /// 数据库上下文实例 Task GetDbContextAsync(); } }