Support Json

This commit is contained in:
sunkaixuan
2019-05-16 22:16:55 +08:00
parent bcd187ec58
commit 1d3bfdadfd
6 changed files with 32 additions and 7 deletions

View File

@@ -19,6 +19,7 @@ namespace OrmTest
OnLogExecuting = (sql, p) =>
{
Console.WriteLine(sql);
Console.WriteLine(string.Join(",", p?.Select(it => it.ParameterName + ":" + it.Value)));
}
}
});