This commit is contained in:
sunkaixuan 2017-09-20 14:00:49 +08:00
parent 3a7fcf7150
commit 5cf7a41772
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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