2019-05-26 19:35:57 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace OrmTest
|
|
|
|
|
{
|
|
|
|
|
public partial class NewUnitTest
|
|
|
|
|
{
|
|
|
|
|
public static void CodeFirst()
|
|
|
|
|
{
|
|
|
|
|
if (Db.DbMaintenance.IsAnyTable("UnitCodeTest1", false))
|
|
|
|
|
Db.DbMaintenance.DropTable("UnitCodeTest1");
|
|
|
|
|
Db.CodeFirst.InitTables<UnitCodeTest1>();
|
2021-01-29 20:36:52 +08:00
|
|
|
|
Db.CodeFirst.InitTables<UnitCodeTest22>();
|
|
|
|
|
Db.Insertable(new UnitCodeTest22()).ExecuteCommand();
|
|
|
|
|
Db.DbMaintenance.TruncateTable<UnitCodeTest22>();
|
|
|
|
|
Db.CodeFirst.InitTables<UnitCodeTest3>();
|
|
|
|
|
Db.Insertable(new UnitCodeTest22() { id=1}).ExecuteCommand();
|
2019-05-26 19:35:57 +08:00
|
|
|
|
}
|
2021-01-29 20:36:52 +08:00
|
|
|
|
|
|
|
|
|
public class UnitCodeTest22 {
|
|
|
|
|
[SqlSugar.SugarColumn(IsNullable =true)]
|
|
|
|
|
public decimal? id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
[SqlSugar.SugarTable("UnitCodeTest22")]
|
|
|
|
|
public class UnitCodeTest3
|
|
|
|
|
{
|
|
|
|
|
[SqlSugar.SugarColumn(IsNullable = false)]
|
|
|
|
|
public int id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-26 19:35:57 +08:00
|
|
|
|
public class UnitCodeTest1
|
|
|
|
|
{
|
|
|
|
|
[SqlSugar.SugarColumn(IndexGroupNameList = new string[] { "group1" })]
|
|
|
|
|
public int Id { get; set; }
|
2019-06-04 17:06:28 +08:00
|
|
|
|
[SqlSugar.SugarColumn(DefaultValue= "now()", IndexGroupNameList =new string[] {"group1" } )]
|
2019-05-26 19:35:57 +08:00
|
|
|
|
public DateTime? CreateDate { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|