Browse Source

Add unit test

SqlSugar5
sunkaixuan 2 years ago
parent
commit
5dfbfb7b7b
  1. 10
      Src/Asp.Net/PgSqlTest/UnitTest/UCodeFirst.cs

10
Src/Asp.Net/PgSqlTest/UnitTest/UCodeFirst.cs

@ -47,6 +47,16 @@ namespace OrmTest
Db.Insertable(new UnitCodeFirst131() { Id = 1 }).ExecuteCommand();
Db.CodeFirst.InitTables<UNITCODEFIRST131>();
Db.CodeFirst.InitTables<UNITCOdEFIRST131>();
Db.CodeFirst.InitTables<TestTbl>();
}
[SugarTable("test_tbl")]
public class TestTbl
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
[SugarColumn(ColumnName = "birthday", IsNullable = true, DefaultValue = "1900-01-01")]
public DateTime Birthday { get; set; }
}
public class UnitCodeFirst131
{

Loading…
Cancel
Save