- 修复 ToSql AsProperty 大小别名问题;

This commit is contained in:
2881099
2022-08-17 15:15:17 +08:00
parent 3a58084afc
commit c43a90787c
3 changed files with 23 additions and 11 deletions

View File

@ -379,6 +379,17 @@ namespace base_entity
#endregion
Expression<Func<HzyTuple<User1, Group, Group, Group, Group, Group>, bool>> where = null;
where = where.Or(a => a.t6.Index > 0);
where = where.Or(a => a.t5.Index > 0);
where = where.Or(a => a.t4.Index > 0);
where = where.Or(a => a.t3.Index > 0);
where = where.Or(a => a.t2.Index > 0);
where = where.Or(a => a.t1.Nickname.Length > 0);
var sql11224333 = fsql.Select<User1, Group, Group, Group, Group, Group>().Where(where).ToSql();
fsql.UseJsonMap();
fsql.CodeFirst.ConfigEntity<TestClass>(cf =>