在 MSTest 输出中格式化 Nhibernate SQL 日志

发布于 2024-12-21 09:55:47 字数 250 浏览 1 评论 0原文

如何格式化在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

捎一片雪花 2024-12-28 09:55:47

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文