SqlSugar源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.7 KiB

6 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
3 years ago
using SqlSugar;
6 years ago
namespace OrmTest
{
public partial class NewUnitTest
{
public static void CodeFirst()
{
if (Db.DbMaintenance.IsAnyTable("UnitCodeTest1", false))
Db.DbMaintenance.DropTable("UnitCodeTest1");
Db.CodeFirst.InitTables<UnitCodeTest1>();
3 years ago
Db.CodeFirst.InitTables<Test00111>();
Db.DbMaintenance.TruncateTable<Test00111>();
Db.Insertable(new Test00111()).ExecuteCommand();
var list = Db.Queryable<Test00111>().ToList();
3 years ago
Db.CodeFirst.InitTables<Test00111121>();
3 years ago
Db.CodeFirst.InitTables<UnitByteArray>();
Db.Insertable(new UnitByteArray()
{
Data = new byte[] { 1, 2, 123, 31, 1 }
}).ExecuteCommand();
var list2=Db.Queryable<UnitByteArray>().ToDataTable();
}
public class UnitByteArray
{
public byte[] Data { get; set; }
3 years ago
}
public class Test00111121
{
[SugarColumn(IsPrimaryKey = true)]
public string id { get; set; }
[SugarColumn(IsPrimaryKey =true)]
public string creater { get; set; }
3 years ago
}
public class Test00111
{
public int id { get; set; }
[SugarColumn(ColumnDataType = "guid",IsNullable =true)]
public Guid? creater { get; set; }
6 years ago
}
public class UnitCodeTest1
{
public int Id { get; set; }
public DateTime? CreateDate { get; set; }
}
}
}