mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-20 18:48:09 +08:00
Synchronization code
This commit is contained in:
@@ -725,7 +725,7 @@ namespace SqlSugar
|
||||
whereModels.Add(cons);
|
||||
}
|
||||
}
|
||||
this.Where(whereModels);
|
||||
this.Where(whereModels,true);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@@ -419,7 +419,7 @@ namespace SqlSugar
|
||||
var addItem = this.Context.Queryable<T>().AS(asname)
|
||||
.Filter(null, this.isDisableFilters)
|
||||
.TranLock(this.lockType)
|
||||
.Where(conditList).ToList();
|
||||
.Where(conditList,true).ToList();
|
||||
this.dbDataList.AddRange(addItem);
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user