- 优化 GroupBy ToList 中可以直接使用 a.Key;

This commit is contained in:
28810
2020-08-07 00:00:39 +08:00
parent dfac943495
commit 7efe02f69c
21 changed files with 109 additions and 62 deletions

View File

@ -17,6 +17,20 @@ namespace FreeSql.Internal.Model
public TableInfo Table { get; set; }
public bool IsEntity { get; set; }
public bool IsDefaultCtor { get; set; }
public void CopyTo(ReadAnonymousTypeInfo target)
{
target.Property = Property;
target.CsName = CsName;
target.CsType = CsType;
target.MapType = MapType;
target.DbField = DbField;
target.Consturctor = Consturctor;
target.Childs = Childs;
target.Table = Table;
target.IsEntity = IsEntity;
target.IsDefaultCtor = IsDefaultCtor;
}
}
public class ReadAnonymousTypeAfInfo
{