Delete Bug

This commit is contained in:
sunkaixuan
2017-07-02 23:53:01 +08:00
parent 21d158e8d2
commit 1f6b7dc90d
2 changed files with 5 additions and 4 deletions

View File

@@ -26,8 +26,8 @@ namespace OrmTest.Demo
//by primary key array
var t4 = db.Deleteable<Student>().In(new int[] { 1, 2 }).ExecuteCommand();
//by expression
var t5 = db.Deleteable<Student>().Where(it => it.Id == 1).ExecuteCommand();
//by expression id>1 and id==1
var t5 = db.Deleteable<Student>().Where(it => it.Id > 1).Where(it => it.Id == 1).ExecuteCommand();
}
}
}