mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
修复 pgsql Enum 类型 formatSql bug
This commit is contained in:
@ -148,7 +148,8 @@ namespace FreeSql.Tests {
|
||||
var list111 = select.From<TestTypeInfo, TestTypeParentInfo>((s, b, c) => s
|
||||
.InnerJoin(a => a.TypeGuid == b.Guid)
|
||||
.LeftJoin(a => c.Id == b.ParentId)
|
||||
.Where(a => b.Name != "xxx")).ToList((a, b, c) => new {
|
||||
.Where(a => b.Name != "xxx"))
|
||||
.ToList((a, b, c) => new {
|
||||
a.Id,
|
||||
a.Title,
|
||||
a.Type,
|
||||
|
Reference in New Issue
Block a user