mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-15 23:13:42 +08:00
Add demo
This commit is contained in:
parent
1c3b081bcf
commit
c81ac9b305
@ -172,6 +172,11 @@ namespace OrmTest
|
||||
//.SetColumns("price", 1)
|
||||
.Where("id=1").ExecuteCommand();
|
||||
|
||||
db.Updateable<Custom>()
|
||||
.AS("order")
|
||||
.SetColumns(it=>it.Name=="a")
|
||||
.Where(it => SqlFunc.Subqueryable<Custom>().AS("order").Where(s => s.Id == it.Id).NotAny()).ExecuteCommand();
|
||||
|
||||
object o = db.Queryable<Order>().First();
|
||||
db.UpdateableByObject(o).ExecuteCommandAsync().GetAwaiter().GetResult();
|
||||
object os = db.Queryable<Order>().Take(2).ToList();
|
||||
|
@ -60,6 +60,10 @@ namespace OrmTest
|
||||
db.DeleteableByObject(o).ExecuteCommandAsync().GetAwaiter().GetResult();
|
||||
object os = db.Queryable<Order>().Take(2).ToList();
|
||||
db.DeleteableByObject(os).ExecuteCommand();
|
||||
|
||||
db.Deleteable<Custom>()
|
||||
.AS("order")
|
||||
.Where(it =>SqlFunc.Subqueryable<Custom>().AS("order").Where(s=>s.Id==it.Id).NotAny() ).ExecuteCommand();
|
||||
Console.WriteLine("#### Deleteable End ####");
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user