如何显示 FluentNHiberante 异常或 SQL 异常?

发布于 2024-11-07 04:58:14 字数 157 浏览 0 评论 0原文

我使用 FluentNHibernate 和 SQLite。由于我的域类存在一些问题,我经常在流畅的配置中遇到异常。但 VS 只弹出一个 InvalidOperationException,没有任何关于问题所在的类或方法的信息。

在这种情况下,我需要做什么才能显示更多有用的异常信息?

I use FluentNHibernate and SQLite. Often I get Exception in the fluent configuration due to some problem with my Domain classes. But VS only pops up an InvalidOperationException, with no info about what class or method is the problem.

What I need to do to get displayed more useful exception info in this case?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

快乐很简单 2024-11-14 04:58:14

我通常在创建会话工厂时进行尝试捕获,然后将异常信息记录并显示到日志文件/控制台。使用异常 .ToString 方法。这应该会给你更多的细节。

catch (Exception ex)
{
    //Write to console, display, etc the exception 
    Console.WriteLine(ex.ToString());
}

I usually have a try catch around the creation of my session factory and I'll log and display the exception information to the log file/console. Use the exception .ToString method. This should give you more detail.

catch (Exception ex)
{
    //Write to console, display, etc the exception 
    Console.WriteLine(ex.ToString());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文