修复 pgsql Enum 类型 formatSql bug

This commit is contained in:
28810
2019-04-04 16:59:02 +08:00
parent 37aa5c613c
commit ed1a68a927
3 changed files with 8 additions and 5 deletions

View File

@ -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,