流畅的 Nhibernate 映射从二级表加载集合

发布于 2024-12-17 20:47:54 字数 457 浏览 0 评论 0原文

你能用流畅的 nhibernate 映射以下场景吗?如果是的话,如何映射:

表结构如下所示:

PrimaryTable
  |__ 中间表
       |_
_MyData

"PrimaryTable" -> “中间表”为1:1,“中间表”->1:1 MyData 是 1:n

对象模型如下所示:

PrimaryTableObject
  |__ IList

基本上,我想加载集合但绕过中间表。有没有办法通过流畅的 nhibernate 映射来做到这一点?

如果问题没有意义,请批评我,我会用更多信息进行编辑。

Can you map the following scenario with fluent nhibernate, and if so how:

The table structure looks like this:

PrimaryTable
  |__ Intermediary table
        |_
_MyData

"PrimaryTable" -> "Intermediary table" is 1:1 and "Intermediary table" -> MyData is 1:n

The object model looks like this:

PrimaryTableObject
  |__ IList<MyDataObject>

Basically, I want to load the collection but bypass the intermediary table. Is there a way to do this with fluent nhibernate mapping?

Bash me if the question doesn't make sense and I'll edit it with more info.

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

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

发布评论

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

评论(1

你列表最软的妹 2024-12-24 20:47:54
class PrimaryMap : ClassMap<Primary>
{
    public PrimaryMap()
    {
        Join("IntermediaryTable", join =>
        {
            join.KeyColumn("primary_id");
            join.HasMany(x => x.MyDataObjects);
        });
    }
}
class PrimaryMap : ClassMap<Primary>
{
    public PrimaryMap()
    {
        Join("IntermediaryTable", join =>
        {
            join.KeyColumn("primary_id");
            join.HasMany(x => x.MyDataObjects);
        });
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文