mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update demo
This commit is contained in:
parent
499a9ce36c
commit
16e04b7a71
@ -25,8 +25,42 @@ namespace OrmTest
|
||||
var list = db.Queryable<CodeFirstTable1>().ToList();
|
||||
db.CodeFirst.InitTables<IndexClass>();
|
||||
db.CodeFirst.InitTables<SplitTableEntity>();
|
||||
TestBool(db);
|
||||
TestGuid(db);
|
||||
Console.WriteLine("#### CodeFirst end ####");
|
||||
}
|
||||
private static void TestGuid(SqlSugarClient db)
|
||||
{
|
||||
db.CodeFirst.InitTables<GuidTest>();
|
||||
db.DbMaintenance.TruncateTable("BoolTest");
|
||||
var Id = 1;
|
||||
db.Insertable<GuidTest>(new GuidTest() { A = Guid.Empty, Id = Id }).ExecuteCommand();
|
||||
Console.Write(db.Queryable<GuidTest>().First().A);
|
||||
db.Updateable<GuidTest>(new GuidTest() { A = Guid.NewGuid(), Id = Id }).ExecuteCommand();
|
||||
Console.Write(db.Queryable<GuidTest>().First().A);
|
||||
}
|
||||
private static void TestBool(SqlSugarClient db)
|
||||
{
|
||||
db.CodeFirst.InitTables<BoolTest2>();
|
||||
db.DbMaintenance.TruncateTable("BoolTest");
|
||||
var Id = 1;
|
||||
db.Insertable<BoolTest2>(new BoolTest2() { A = true, Id = Id }).ExecuteCommand();
|
||||
Console.Write(db.Queryable<BoolTest2>().First().A);
|
||||
db.Updateable<BoolTest2>(new BoolTest2() { A = false, Id = Id }).ExecuteCommand();
|
||||
Console.Write(db.Queryable<BoolTest2>().First().A);
|
||||
}
|
||||
}
|
||||
public class GuidTest
|
||||
{
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public long Id { get; set; }
|
||||
public Guid A { get; set; }
|
||||
}
|
||||
public class BoolTest2
|
||||
{
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public long Id { get; set; }
|
||||
public bool A { get; set; }
|
||||
}
|
||||
|
||||
[SugarIndex(null, nameof(IndexClass.Name), OrderByType.Asc)]
|
||||
|
Loading…
Reference in New Issue
Block a user