- 修复 ToList((a,b) => new { a, b }) 当 b 为 null 的时候,应该整个 b 为 null;(导航属性没这个问题)

This commit is contained in:
28810
2019-12-10 16:35:11 +08:00
parent d8fd20b8f9
commit 82376eecb4
4 changed files with 51 additions and 11 deletions

View File

@ -16,6 +16,7 @@ namespace FreeSql.Internal.Model
public ReadAnonymousTypeInfoConsturctorType ConsturctorType { get; set; }
public List<ReadAnonymousTypeInfo> Childs = new List<ReadAnonymousTypeInfo>();
public TableInfo Table { get; set; }
public bool IsEntity { get; set; }
}
public enum ReadAnonymousTypeInfoConsturctorType { Arguments, Properties }
}