将项目添加到 HasMany 集合时的 NHibernate 一级缓存
我正在通过添加到 NHibernate 中另一个对象上的 HasMany 集合来创建一个新对象。
当我直接在同一会话中查询该对象时,它为空。如何将子对象存储在一级缓存的 HasMany 集合中。我遇到的问题是我需要获取对象并在提交所有内容之前对其进行一些工作。
HasMany(x => x.BehavioralEvents)
.AsBag()
.Cascade.SaveUpdate()
.Inverse()
.KeyColumn("StudentCaseId")
.LazyLoad();
BehavioralEvents 是一个 IList,我需要在同一会话中直接查询它:
session.Get<BehavioralEvent>(id);
I am creating a new object by adding to to a HasMany collection on ANOTHER object in NHibernate.
When I go to query for that object directly in the same session, it is null. How can I store a child object in a HasMany collection in the 1st level cache. The problem I am having is I need to get the object and do some work on it before everything is committed.
HasMany(x => x.BehavioralEvents)
.AsBag()
.Cascade.SaveUpdate()
.Inverse()
.KeyColumn("StudentCaseId")
.LazyLoad();
BehavioralEvents is an IList and I need to Query for it directly in the same session:
session.Get<BehavioralEvent>(id);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要保存新对象以使其持久化,而不是依赖于父对象的级联设置。在刷新会话之前,级联不会发生。我假设您自己分配 ID,而不是使用生成的标识符。
You need to Save the new object to make it persistent instead of relying on the cascade settings from the parent object. The cascade will not occur until the session is flushed. I assume you are assigning the ID yourself and not using a generated identifier.