コード例 #1
0
ファイル: ModelTest.cs プロジェクト: lwliang/doc
 public ParentModel()
 {
     ModelName = "test.parent";
     Name      = FieldFactory.CreateStringField(this, nameof(Name), 100);
     Childs    = FieldFactory.CreateOne2ManyField(this, nameof(Childs), "test.user", "ParentId");
 }