v3.2.802-preview20231024

This commit is contained in:
2881099
2023-10-24 13:03:46 +08:00
parent 09225ffd12
commit 9004ff095f
34 changed files with 52 additions and 39 deletions

View File

@ -601,8 +601,8 @@ namespace base_entity
#endregion
var updatejoin031sql = fsql.Update<User1>()
.Join<UserGroup>((a, b) => a.GroupId == b.Id)
.AsTable("t1", "t2")
.Join<UserGroup>(fsql.Select<UserGroup>().Where(a => a.GroupName == "xxx"), (a, b) => a.GroupId == b.Id)
.AsTable("t1", null)
.Set((a, b) => b.GroupName == a.Username + "b.groupname")
.ToSql();