Update mapper

This commit is contained in:
SUNKAIXUAN
2021-03-04 19:36:16 +08:00
parent 6b4e0b4f20
commit d3d5a1fdd4
6 changed files with 44 additions and 3 deletions

View File

@@ -44,6 +44,8 @@ namespace OrmTest
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
public string Name { get; set; }
[SugarColumn(IsIgnore = true)]
public List<B> BList { get; set; }
}
public class B
{