Update Demo

This commit is contained in:
sunkaixuan
2017-09-19 02:41:23 +08:00
parent 723517693e
commit 53409f5b3a
6 changed files with 10 additions and 7 deletions

View File

@@ -188,8 +188,8 @@ namespace OrmTest.Demo
{
var db = GetInstance();
db.Ado.BeginTran();
var t1 = db.Ado.SqlQuery<string>("select 'a'");
var t2 = db.Ado.GetInt("select 1");
var t1 = db.Ado.SqlQuery<string>("select 'a'",new { id = 1 });
var t2 = db.Ado.GetInt("select 1",new Dictionary<string, object>() { { "id",1} });
var t3 = db.Ado.GetDataTable("select 1 as id");
db.Ado.CommitTran();
//more

View File

@@ -14,7 +14,7 @@ namespace OrmTest.Demo
db.Ado.IsEnableLogEvent = true;
db.Ado.LogEventStarting = (sql, pars) =>
{
Console.WriteLine(sql + "\r\n" + db.Utilities.SerializeObject(pars));
Console.WriteLine(sql + "\r\n" + db.Utilities.SerializeObject(pars.ToDictionary(it=>it.ParameterName,it=>it.Value)));
Console.WriteLine();
};
return db;