diff --git a/Src/Asp.Net/DmTest/Demo/Demo2_Updateable.cs b/Src/Asp.Net/DmTest/Demo/Demo2_Updateable.cs index b213283d8..e5f3b04a9 100644 --- a/Src/Asp.Net/DmTest/Demo/Demo2_Updateable.cs +++ b/Src/Asp.Net/DmTest/Demo/Demo2_Updateable.cs @@ -98,7 +98,7 @@ namespace OrmTest db.Updateable(updateObj).With(SqlWith.UpdLock).ExecuteCommand(); //Where Sql - db.Updateable(updateObj).Where("id=@x", new { x = 1 }).ExecuteCommand(); + //db.Updateable(updateObj).Where("id=@x", new { x = 1 }).ExecuteCommand(); Console.WriteLine("#### Updateable End ####"); } diff --git a/Src/Asp.Net/MySqlTest/Demo/Demo2_Updateable.cs b/Src/Asp.Net/MySqlTest/Demo/Demo2_Updateable.cs index f53814a44..1c66acad7 100644 --- a/Src/Asp.Net/MySqlTest/Demo/Demo2_Updateable.cs +++ b/Src/Asp.Net/MySqlTest/Demo/Demo2_Updateable.cs @@ -98,7 +98,7 @@ namespace OrmTest db.Updateable(updateObj).With(SqlWith.UpdLock).ExecuteCommand(); //Where Sql - db.Updateable(updateObj).Where("id=@x", new { x = "1" }).ExecuteCommand(); + //db.Updateable(updateObj).Where("id=@x", new { x = "1" }).ExecuteCommand(); Console.WriteLine("#### Updateable End ####"); } diff --git a/Src/Asp.Net/OracleTest/Demo/Demo2_Updateable.cs b/Src/Asp.Net/OracleTest/Demo/Demo2_Updateable.cs index 3938edd31..039c07bbf 100644 --- a/Src/Asp.Net/OracleTest/Demo/Demo2_Updateable.cs +++ b/Src/Asp.Net/OracleTest/Demo/Demo2_Updateable.cs @@ -98,7 +98,7 @@ namespace OrmTest db.Updateable(updateObj).With(SqlWith.UpdLock).ExecuteCommand(); //Where Sql - db.Updateable(updateObj).Where("id=@x", new { x = "1" }).ExecuteCommand(); + //db.Updateable(updateObj).Where("id=@x", new { x = "1" }).ExecuteCommand(); Console.WriteLine("#### Updateable End ####"); } diff --git a/Src/Asp.Net/PgSqlTest/Demo/Demo2_Updateable.cs b/Src/Asp.Net/PgSqlTest/Demo/Demo2_Updateable.cs index 25c6f4e8b..ed749fabd 100644 --- a/Src/Asp.Net/PgSqlTest/Demo/Demo2_Updateable.cs +++ b/Src/Asp.Net/PgSqlTest/Demo/Demo2_Updateable.cs @@ -101,7 +101,7 @@ namespace OrmTest db.Updateable(updateObj).With(SqlWith.UpdLock).ExecuteCommand(); //Where Sql - db.Updateable(updateObj).Where("id=@x", new { x = 1 }).ExecuteCommand(); + //db.Updateable(updateObj).Where("id=@x", new { x = 1 }).ExecuteCommand(); Console.WriteLine("#### Updateable End ####"); } diff --git a/Src/Asp.Net/SqliteTest/Demo/Demo2_Updateable.cs b/Src/Asp.Net/SqliteTest/Demo/Demo2_Updateable.cs index 285348476..f0d5bad96 100644 --- a/Src/Asp.Net/SqliteTest/Demo/Demo2_Updateable.cs +++ b/Src/Asp.Net/SqliteTest/Demo/Demo2_Updateable.cs @@ -98,7 +98,7 @@ namespace OrmTest db.Updateable(updateObj).With(SqlWith.UpdLock).ExecuteCommand(); //Where Sql - db.Updateable(updateObj).Where("id=@x", new { x = "1" }).ExecuteCommand(); + //db.Updateable(updateObj).Where("id=@x", new { x = "1" }).ExecuteCommand(); Console.WriteLine("#### Updateable End ####"); }