FluentNHibernate - LazyLoad(Lazyness.NoProxy) 不存在
我正在尝试使用 Fluent NHibernate 的此功能:
https://github.com/jagregory / Fluent-nhibernate/commit/92ad2d8c4ba8391c74fc8e32b36e71722b63dff0
但是当我试图说:
HasMany(x => x.Details)
.Inverse()
.Cascade.All()
.LazyLoad(Laziness.NoProxy);
没有名为 LazyLoad 的方法接受参数。
我的 dll 告诉我我正在使用 Fluent Nhibernate 版本 1.1.0.685。请注意,我对 NHibernate 非常陌生,非常感谢您的帮助。谢谢
i'm trying to use this feature of Fluent NHibernate:
https://github.com/jagregory/fluent-nhibernate/commit/92ad2d8c4ba8391c74fc8e32b36e71722b63dff0
But when i try to say:
HasMany(x => x.Details)
.Inverse()
.Cascade.All()
.LazyLoad(Laziness.NoProxy);
There is no method called LazyLoad which accepts an argument.
My dll tells me i'm using version 1.1.0.685 of Fluent Nhibernate. Please note that i am very new to NHibernate and would appreciate the help. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
哎呀,我的错。你把它放在关系的另一端(多对一)。
Oops my bad. You put it on the other end of the relationship (the many to one side).