NHibernate 映射到不一致的数据

发布于 2024-12-06 20:08:26 字数 459 浏览 0 评论 0原文

我正在使用 NHibernate 来映射 DataModel。不幸的是,由于缺少键/约束,数据库包含一些不一致的数据。目前,我陷入了 m:n 映射的困境,其中映射表上的某些键引用了丢失的数据。 这是一些示例数据:

Table: Foo
id  Value
0   A
1   B
2   C

Table: Bar
id  Value
10  X
20  Y
30  Z

Table: Map
foo_id  bar_id  amount
  0       10        2
  0       11        4
  1       12        5
  2       20        8

我想获取所有 Foo,其中也有一个 Bar。在 (T)SQL 中我只会使用连接。我已经厌倦了几个映射(例如引用+可为空等),但由于映射表包含一个键,NHiernate 似乎需要一个实体。

有什么建议吗?

I am using NHibernate to map a DataModel. Unfotunatley the DataBase contains some inconsistent data due to lack of keys/constraints. Currently I am stuck with an m:n mapping where some keys on the map Table reference missing data.
Here is some sample Data:

Table: Foo
id  Value
0   A
1   B
2   C

Table: Bar
id  Value
10  X
20  Y
30  Z

Table: Map
foo_id  bar_id  amount
  0       10        2
  0       11        4
  1       12        5
  2       20        8

I want to fetch all the Foo, that also have a Bar. In (T)SQL i would just use a join. I've tired a couple of mappings (like references + nullable, etc), but since the mapping table contains a key, NHiernate seems to expect an entity.

Any suggestions?

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

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

发布评论

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

评论(1

み青杉依旧 2024-12-13 20:08:26

您可以使用 not-found="ignore" 属性(Fluent 中为 NotFound.Ignore())。

You could use the not-found="ignore" attribute (NotFound.Ignore() in Fluent).

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