This commit is contained in:
sunkaixuan 2023-10-22 22:44:21 +08:00
parent d6a0b6c835
commit c43cf6296f

View File

@ -50,6 +50,7 @@ namespace OrmTest
var list= db.Ado.SqlQuery<Order>("select * from \"ORDER\"");
var intValue=db.Ado.SqlQuerySingle<int>("select 1 from dual");
db.Ado.ExecuteCommand("delete \"ORDER\" where id>1000");
db.Ado.ExecuteCommand("select 1 from dual;");//Supprt ";"
//db.Ado.xxx
Console.WriteLine("#### Ado End ####");
}