using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; namespace OrmTest { public partial class NewUnitTest { public static void CodeFirst() { if (Db.DbMaintenance.IsAnyTable("UnitCodeTest1", false)) Db.DbMaintenance.DropTable("UnitCodeTest1"); Db.CodeFirst.InitTables(); Db.CodeFirst.InitTables(); Db.DbMaintenance.TruncateTable(); Db.Insertable(new Test00111()).ExecuteCommand(); var list = Db.Queryable().ToList(); Db.CodeFirst.InitTables(); Db.CodeFirst.InitTables(); Db.Insertable(new UnitByteArray1() { Data = new byte[] { 1, 2, 123, 31, 1 } }).ExecuteCommand(); var list2=Db.Queryable().ToDataTable(); var x=Db.DbMaintenance.GetColumnInfosByTableName("`UnitByteArray1`", false); if (x[0].Length != 18 && x[0].Scale != 0) throw new Exception("unit test error"); if (x[1].Length != 18 && x[1].Scale != 2) throw new Exception("unit test error"); if (x[2].Length != 0 && x[2].Scale != 0) throw new Exception("unit test error"); } public class UnitByteArray1 { [SugarColumn(IsNullable = true, ColumnDataType = "varchar(18)")] public string Aa { get; set; } [SugarColumn(IsNullable =true, ColumnDataType = "decimal(18,2)")] public decimal A { get; set; } public byte[] Data { get; set; } } public class Test00111121 { [SugarColumn(IsPrimaryKey = true)] public string id { get; set; } [SugarColumn(IsPrimaryKey =true)] public string creater { get; set; } } public class Test00111 { public int id { get; set; } [SugarColumn(ColumnDataType = "guid",IsNullable =true)] public Guid? creater { get; set; } } public class UnitCodeTest1 { public int Id { get; set; } public DateTime? CreateDate { get; set; } } } }