mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 18:22:23 +08:00
Updateable.PageSize bug
This commit is contained in:
@@ -194,6 +194,8 @@ namespace SqlSugar
|
||||
result.DiffModel = this.diffModel;
|
||||
if (this.UpdateBuilder.DbColumnInfoList.Any())
|
||||
result.UpdateColumns = this.UpdateBuilder.DbColumnInfoList.GroupBy(it => it.TableId).First().Select(it => it.DbColumnName).ToList();
|
||||
if(this.UpdateBuilder?.UpdateColumns?.Any()==true)
|
||||
result.UpdateColumns = this.UpdateBuilder.UpdateColumns;
|
||||
return result;
|
||||
}
|
||||
public IUpdateable<T, T2> InnerJoin<T2>(Expression<Func<T, T2, bool>> joinExpress)
|
||||
|
Reference in New Issue
Block a user