在 MSTest 输出中格式化 Nhibernate SQL 日志
如何格式化在 MSTest 标准控制台输出中编写的 nhibernate 的 sql 日志?
我已经设置了
Configuration.DatabaseIntergation Properties ,
db.LogInConsole = true;
db.LogFormattedSql = true;
db.AutoCommentSql = true;
但测试结果中的输出仍然很难看。
How to format sql logs from nhibernate written in MSTest Standard Console output?
I already set
Configuration.DatabaseIntergation Properties like
db.LogInConsole = true;
db.LogFormattedSql = true;
db.AutoCommentSql = true;
but the output in the test result is still ugly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NHibernate 仅插入“\n”作为换行符,而 Visual Studio 仅显示“\r\n”换行符。如果您在任何好的文本编辑器中查看测试结果文件(它只是一个 XML 文件),您将看到换行符。
我不认为你可以在不重新编译 NHibernate 的情况下更改它,但这实际上更多是 Visual Studio 的问题而不是 NHibernate 的问题。
NHibernate only inserts "\n" as a line break but Visual Studio only shows line breaks that are "\r\n". If you view the test result file (it's just an XML file) in any good text editor you'll see the line breaks.
I don't think that you can change NHibernate without recombiling it but it's really more a problem of Visual Studio than of NHibernate.