Nhibernate 和 Spring 中的延迟属性加载
我正在使用 NHibernate 2.1.2 和 Spring 1.3
我的一个类中有两个文本列(blob)。我尝试使用lazy="true" 来映射这些属性,但 NHProfiler 仍然显示加载主对象时添加到 SELECT 语句中的两列。
我正在使用 Spring.NHibernate 会话工厂,并使用 Castle 和 Spring 配置了 ProxyFactory,但没有成功。
I'm using NHibernate 2.1.2 and Spring 1.3
I have two Text columns (blobs) in one of my classes. I'm trying to use lazy="true" for the mapping of those properties but NHProfiler still shows the two columns being added to the SELECT statement when the main object is loaded.
I'm using Spring.NHibernate session factory and have configured ProxyFactory with both Castle and Spring with no luck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
到目前为止,我知道这是 2.1.2 版本中未包含的内容
根据此网址,惰性属性是相当新的东西,它已经在主干上,准备在下一个版本中发布
http://ayende.com/Blog/archive/2010/01/27/nhibernate-new -feature-lazy-properties.aspx
您可以下载当前的主干代码或等待3.0版本:-)
https://nhibernate.jira.com/secure/ReleaseNote.jspa?projectId=10000&version=10293
So far I know that's something NOT included on the version 2.1.2
According this url, lazy properties is something quite new and it's already on the trunk ready to be released on next version
http://ayende.com/Blog/archive/2010/01/27/nhibernate-new-feature-lazy-properties.aspx
You can download the current trunk code or wait to 3.0 version :-)
https://nhibernate.jira.com/secure/ReleaseNote.jspa?projectId=10000&version=10293