Lith 4 ヶ月 前
コミット
e40eeca5fc
1 ファイル変更4 行追加0 行削除
  1. 4 0
      test/Vitorm.PostgreSQL.MsTest/DataSource.cs

+ 4 - 0
test/Vitorm.PostgreSQL.MsTest/DataSource.cs

@@ -14,9 +14,13 @@ namespace Vitorm.MsTest
         [System.ComponentModel.DataAnnotations.Schema.Column("userName")]
         public string name { get; set; }
 
+        [System.ComponentModel.DataAnnotations.Schema.Column("userBirth")]
         public DateTime? birth { get; set; }
+        [System.ComponentModel.DataAnnotations.Schema.Column("userFatherId")]
         public int? fatherId { get; set; }
+        [System.ComponentModel.DataAnnotations.Schema.Column("userMotherId")]
         public int? motherId { get; set; }
+        [System.ComponentModel.DataAnnotations.Schema.Column("userClassId")]
         public int? classId { get; set; }
 
         public static User NewUser(int id, bool forAdd = false) => new User { id = id, name = "testUser" + id };