Update Core

This commit is contained in:
sunkaixuan
2022-05-24 10:06:53 +08:00
parent de12dc25e4
commit 561ee9f56b
2 changed files with 18 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ namespace SqlSugar
{
public interface ISugarUnitOfWork<T> where T : SugarUnitOfWork, new()
{
public ISqlSugarClient Db { get; set; }
ISqlSugarClient Db { get; set; }
T CreateContext(bool isTran);
}
public class SugarUnitOfWork<T> : ISugarUnitOfWork<T> where T : SugarUnitOfWork, new()