如何显示 FluentNHiberante 异常或 SQL 异常?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常在创建会话工厂时进行尝试捕获,然后将异常信息记录并显示到日志文件/控制台。使用异常 .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.