gpt4 book ai didi

NHibernate 自定义集合类型

转载 作者:行者123 更新时间:2023-12-04 01:05:59 25 4
gpt4 key购买 nike

我有一个名为 Patient 的实体对象并且该实体有一个名为 Visits 的属性类型为 VisitsCollection .
VisitsCollectionsIList<Visit> 的子类但它也向集合添加了一些自定义逻辑(如自动排序、一些验证、通知等)。

需要使用自定义集合类型,因为它将一些数据添加到添加到集合中的实体并透明地执行一些其他文书工作。

现在我想在 NHibernate 中映射它,所以我创建了:

<list name="Visits" lazy="true" fetch="select">
<key foreign-key="PatientId" />
<index column="Timestamp" />
<one-to-many class="Visit" not-found="ignore"/>
</list>

我得到一个异常(exception):

Unable to cast object of type 'NHibernate.Collection.PersistentList' to type '...VisitsCollection'



每当我访问访问属性时。

我也试过这样映射:
<list name="Visits" lazy="true" fetch="select" collection-type="VisitsCollection">
<key foreign-key="PatientId" />
<index column="Timestamp" />
<one-to-many class="Visit" not-found="ignore"/>
</list>

但是,我仍然收到此异常:

Custom type does not implement UserCollectionType: .....VisitsCollection



我不想继承我的 VisitsCollection来自任何 NHibernate 类型,因为集合类是我希望它与 DAL 无关的框架的一部分(因为它将在许多场景中使用 - 不仅与数据库一起使用)。

关于如何映射这个,保留我的代码结构的任何想法?

提前致谢。

最佳答案

我从不使用自定义集合类型,主要是因为我很懒。 NHibernate 希望您使用 IUserCollectionType 我相信,这需要一些管道。

而不是那样,我的第一站是将使用扩展方法视为 discussed by Billly McCafferty .但是你写的代码是这样的......

或者,您可以将您的集合作为组件映射为 discussed here by Colin Jack .这对于您的场景可能更容易吗?

另请检查此 SO thread .

关于NHibernate 自定义集合类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2358438/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com