using OrmTest.Models; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrmTest.Demo { public class Delete:DemoBase { public static void Init() { var db = GetInstance(); //by entity var t1 = db.Deleteable().Where(new Student() { Id = 1 }).ExecuteCommand(); //use lock var t2 = db.Deleteable().With(SqlWith.RowLock).ExecuteCommand(); //by primary key var t3 = db.Deleteable().In(1).ExecuteCommand(); //by primary key array var t4 = db.Deleteable().In(new int[] { 1, 2 }).ExecuteCommand(); var t41 = db.Deleteable().In(new int[] { 1, 2 }.Select(it=>it)).ExecuteCommand(); var t42 = db.Deleteable().In(new int[] { 1, 2 }.AsEnumerable()).ExecuteCommand(); //by exp key array var t44 = db.Deleteable().In(it=>it.SchoolId,new int[] { 1, 2 }).ExecuteCommand(); var t441 = db.Deleteable().In(it => it.SchoolId,new int[] { 1, 2 }.Select(it => it)).ExecuteCommand(); var t442 = db.Deleteable().In(it => it.SchoolId,new int[] { 1, 2 }.AsEnumerable()).ExecuteCommand(); var t443 = db.Deleteable().In(it => it.SchoolId, new int[] { 1, 2 }.ToList()).ExecuteCommand(); //by expression id>1 and id==1 var t5 = db.Deleteable().Where(it => it.Id > 1).Where(it => it.Id == 1).ExecuteCommand(); var t6 = db.Deleteable().AS("student").Where(it => it.Id > 1).Where(it => it.Id == 1).ExecuteCommandAsync(); var t7 = db.Deleteable().Where(p => p.SchoolId == SqlFunc.Subqueryable().Where(s => s.Id == p.SchoolId).Select(s => s.Id)).ExecuteCommand(); t6.Wait(); } } }