Update Sqlite

This commit is contained in:
sunkaixuan
2017-11-01 15:40:57 +08:00
parent 6b9cdde372
commit e3d1955a53
3 changed files with 24 additions and 1 deletions

View File

@@ -58,6 +58,8 @@ namespace OrmTest.Demo
//Column is null no update
db.Updateable(updateObj).Where(true).ExecuteCommand();
db.Updateable(new Student[] { new Student() { Id = 2, Name = "a2" }, new Student() { Id = 1, Name = "a1" } }).ExecuteCommand();
}
}
}