如何正确测试 NHibernate FetchMode.Eager?
有没有办法编写集成测试来测试 FetchMode.Eager 是否正常工作? 我想验证当我检索 MySubObject 时它不会进入数据库。
代码:
public MyObject GetEager(string name)
{
return Session
.CreateCriteria(typeof(MyObject))
.SetFetchMode("MySubObject", FetchMode.Eager)
.Add(Restrictions.Eq("Name", name))
.UniqueResult<MyObject>();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用
NHibernateUtil.IsInitialized
... 如本文所述http://nhibernate.info/doc/howto/various/lazy-loading-eager-loading.html
You can also use
NHibernateUtil.IsInitialized
... as explained in this posthttp://nhibernate.info/doc/howto/various/lazy-loading-eager-loading.html
像这样的事情怎么样?
通过关闭会话,然后尝试访问关联的对象,如果未急切加载该对象,则会引发异常。 相反,如果是立即加载,NHibernate 将不会尝试访问数据库,因此不会抛出异常。
How about something like this;
By closing the session and then attempting to access the associated object if the object is not eagerly loaded it will throw an exception. Conversly if it is eagrly loaded NHibernate won't attempt to access the database and so won't throw the exception.