mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-03 20:27:56 +08:00
Update Storageable
This commit is contained in:
parent
e517e3b4de
commit
8d335bf374
@ -725,7 +725,7 @@ namespace SqlSugar
|
|||||||
whereModels.Add(cons);
|
whereModels.Add(cons);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.Where(whereModels);
|
this.Where(whereModels,true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -419,7 +419,7 @@ namespace SqlSugar
|
|||||||
var addItem = this.Context.Queryable<T>().AS(asname)
|
var addItem = this.Context.Queryable<T>().AS(asname)
|
||||||
.Filter(null, this.isDisableFilters)
|
.Filter(null, this.isDisableFilters)
|
||||||
.TranLock(this.lockType)
|
.TranLock(this.lockType)
|
||||||
.Where(conditList).ToList();
|
.Where(conditList,true).ToList();
|
||||||
this.dbDataList.AddRange(addItem);
|
this.dbDataList.AddRange(addItem);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user