using SqlSugar;
namespace NPin.Framework.SqlSugarCore.Abstractions;
public interface ISqlSugarDbContext
{
///
/// Db 客户端
///
ISqlSugarClient SqlSugarClient { get; }
///
/// 连接配置
///
DbConnOptions Options { get; }
///
/// 备份数据库
///
void Backup();
///
/// 设置客户端
///
///
void SetSqlSugarClient(ISqlSugarClient sqlSugarClient);
}