FluentNHibernate - ClassMap 与 IAutoMappingOverride

发布于 2024-08-30 07:56:25 字数 441 浏览 0 评论 0原文

在 FluentNHibernate 中,何时应该对 EntityMap 类使用 ClassMap 以及何时使用 IAutoMappingOverride


public class PostMap : ClassMap<Post>
{
    public PostMap()
    {
        ...
    }
}

public class PostMap : IAutoMappingOverride<Post>
{
    public void Override(AutoMapping<Post> mapping) 
    {
        ...
    }
}

In FluentNHibernate when should I use ClassMap and when IAutoMappingOverride<Entity> for my EntityMap classes.

public class PostMap : ClassMap<Post>
{
    public PostMap()
    {
        ...
    }
}

vs

public class PostMap : IAutoMappingOverride<Post>
{
    public void Override(AutoMapping<Post> mapping) 
    {
        ...
    }
}

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

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

发布评论

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

评论(1

我乃一代侩神 2024-09-06 07:56:25

ClassMap 在手动映射实体时使用。在这种情况下,您为每个实体创建一个单独的 ClassMap,指定该实体如何映射到数据库。

IAutoMappingOverrides 在使用 AutoMapping 映射实体时使用。当使用 AutoMapping Fluent 时,NHibernate 尝试自动找出实体应如何映射到数据库,但有时自动生成的映射并不完全是您想要的,因此您必须覆盖需要调整的部分。在这种情况下,您可以为需要覆盖自动映射的每个实体创建映射覆盖,并仅覆盖这些部分。

更多信息可以在 Fluent NHibernate wiki 中找到:

ClassMaps are used when manually mapping your entities. In that case you create a separate ClassMap for every entity which specifies how that entity is mapped to the database.

IAutoMappingOverrides are used when mapping your entities with AutoMapping. When using AutoMapping Fluent NHibernate tries to automatically figure out how the entities should be mapped to the database, but sometimes the automatically generated mappings are not quite what you wanted, so you have to override the parts that need tweaking. In that case you create a mapping override for each entity who's auto mapping needs to be overridden, and override only those parts.

More info can be found at the Fluent NHibernate wiki:

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