This commit is contained in:
sunkaixuan
2019-05-20 17:32:13 +08:00
parent d7041a8b36
commit c6aee09d60
4 changed files with 22 additions and 0 deletions

View File

@@ -11,6 +11,9 @@ namespace OrmTest
{
public static void Init()
{
Console.WriteLine("");
Console.WriteLine("#### Updateable Start ####");
SqlSugarClient db = new SqlSugarClient(new ConnectionConfig()
{
DbType = DbType.SqlServer,
@@ -96,6 +99,8 @@ namespace OrmTest
//Where Sql
db.Updateable(updateObj).Where("id=@x", new { x = "1" }).ExecuteCommand();
Console.WriteLine("#### Updateable End ####");
}
}