未找到=“忽略” Castle Activerecord 中的行为

发布于 2024-09-25 17:57:21 字数 373 浏览 4 评论 0原文

使用 Castle Activerecord 时是否可以在键映射上实现 NHibernate 的“not-found=”ignore””行为?

我正在 ASP.Net Web 应用程序中使用现有的旧版 Castle Activerecord 类来映射到旧版只读 MSSQL 数据库。我无法以任何方式更改数据库。

父 Product 表与 Type 表有关系,但是 Product 表包含许多 Type 值包含 0 的记录,而 Type 表上尚未为这些记录提供等效记录。

我被要求添加 Product 和 Type 类之间的映射,并且如果可能的话,需要忽略引用完整性被破坏的情况。 'not-found="ignore"' 方法将是我使用普通 NHibernate 来解决此问题的方法。

Is it possible to implement the 'not-found="ignore"' behaviour of NHibernate on a key mapping when using Castle Activerecord?

I am using existing legacy Castle Activerecord classes within an ASP.Net web application to map to a legacy, read only, MSSQL database. I cannot alter the database in any way.

The parent Product table has a relationship with a Type table, however the Product table contains numerous records with Type values containing a 0 which have not been given an equivalent record on the Type table.

I have been asked to add the mapping between the Product and Type class and need to ignore the occurrences of broken referential integrity if possible. The 'not-found="ignore"' method would be the way I would go about this using vanilla NHibernate.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流星番茄 2024-10-02 17:57:21

ActiveRecord 关系属性有一个 NotFoundBehavior 属性,映射到 NHibernate 的 <代码>未找到

这是一个示例。

ActiveRecord relation attributes have a NotFoundBehavior property that maps to NHibernate's not-found

Here's an example.

捶死心动 2024-10-02 17:57:21

作为解决方法,我向 Product 类添加了 GetProductType() 方法来检索类型。

不过,我仍然对使用 Castle 进行此操作的可配置方式感兴趣:)

As a workaround I have added a GetProductType() method to the Product class to retrieve the Type.

I am still interested for a configurable way to do this with Castle though :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文