具有 2 个类引用同一类的流畅 NHibernate 自动映射问题

发布于 2024-10-24 08:23:05 字数 461 浏览 2 评论 0原文

例如:

public class Foo
{
   IList<Bar> bars;
}

public class Bar
{
   public Foo ParentFoo;
}

public class NewBar
{
   public Foo ParentFoo2;
}

自动映射生成的映射是针对引用 Foo 类的最后一个类。 Foo 类的映射是:

<bag name="Bars">
  <key>
    <column name="ParentFoo2_id" /> 
  </key>
  <one-to-many class="Bar" /> 
</bag>

我正在使用 Fluent NHibernate 1.1 和 NHibernate 2.1.2.4000。

for example:

public class Foo
{
   IList<Bar> bars;
}

public class Bar
{
   public Foo ParentFoo;
}

public class NewBar
{
   public Foo ParentFoo2;
}

The mapping that automapping generates is for the last class referencing the Foo class. The mapping for Foo class is :

<bag name="Bars">
  <key>
    <column name="ParentFoo2_id" /> 
  </key>
  <one-to-many class="Bar" /> 
</bag>

I am using Fluent NHibernate 1.1 with NHibernate 2.1.2.4000.

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

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

发布评论

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

评论(1

ι不睡觉的鱼゛ 2024-10-31 08:23:05

我转向流畅的 nhibernate v1.2 ,现在似乎一切正常。

i moved to fluent nhibernate v1.2 , and it seems everything is working fine now.

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