如何通过等效代码将流畅的 nHibernate 动态属性映射转换为 NH 3.2 映射

发布于 2024-12-12 18:13:29 字数 353 浏览 1 评论 0原文

我在流畅的 nHibernate 中有以下映射:

public CustomFieldsMap()
{
    Schema("schema");
    Table("table");

    Id(x => x.Id, m => m.Column("id"));
    DynamicComponent(x => x.Fields, c =>
    {
        ...insert code here...  
    });
}

这工作正常(显然是真实的代码)。

我无法弄清楚 nHibernate 3.2 中引入的通过代码映射功能中的等效项是什么(如果有的话)?

I have the following mapping in fluent nHibernate:

public CustomFieldsMap()
{
    Schema("schema");
    Table("table");

    Id(x => x.Id, m => m.Column("id"));
    DynamicComponent(x => x.Fields, c =>
    {
        ...insert code here...  
    });
}

This works fine (with the real code in obviously).

What I cannot work out is what the equivalent is (if there is one yet) in the mapping by code feature introduced in nHibernate 3.2?

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

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

发布评论

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

评论(2

枫林﹌晚霞¤ 2024-12-19 18:13:29

您必须提供动态组件模板。

Component(x => x.Fields, new
{
    IntField = 0,
    RelationField = default(Related)
}, dc =>
{
    // dynamic component members mappings
    dc.Property(x => x.IntField);
    dc.ManyToOne(x => x.RelationField);
    // etc.
});

有关示例和说明,请参阅本文

You have to provide dynamic component template.

Component(x => x.Fields, new
{
    IntField = 0,
    RelationField = default(Related)
}, dc =>
{
    // dynamic component members mappings
    dc.Property(x => x.IntField);
    dc.ManyToOne(x => x.RelationField);
    // etc.
});

See this article for examples and explainations.

甲如呢乙后呢 2024-12-19 18:13:29

不能使用RegisterDynamicComponentMapping吗?

Can you not use RegisterDynamicComponentMapping?

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