FluentNHibernate 混合 Fluent 和自动映射

发布于 2024-11-27 07:12:47 字数 121 浏览 2 评论 0原文

有没有一种干净的方法将流畅映射与自动映射混合在一起?理想情况下,我想说“如果我没有域对象的 ClassMap,则自动映射它”。有推荐的方法吗?我不想在与数据访问相关的业务对象上使用属性(例如:[UseAutoMapping])。

Is there a clean way to mix fluent mappings with automappings? Ideally, I'd like to say "if I don't have a ClassMap for a domain object, then automap it". Is there a recommended approach? I'd rather not use attributes on my business objects that are data access related (ex: [UseAutoMapping]).

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

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

发布评论

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

评论(1

权谋诡计 2024-12-04 07:12:47

是的 - 请查看 IAutoMappingOverride

基本上,任何映射覆盖Automapping行为需要实现该接口。

例如

public class MyClassMap : IAutoMappingOverride<MyClass>
{
    public void Override(AutoMapping<MyClass> mapping)
    {
        mapping.IgnoreProperty(host => host.HostName);
        mapping.Table("BobsHardware");
    }
}

Yes - check out IAutoMappingOverride

Basically, any mappings which override the Automapping behaviour need to implement this interface.

e.g.

public class MyClassMap : IAutoMappingOverride<MyClass>
{
    public void Override(AutoMapping<MyClass> mapping)
    {
        mapping.IgnoreProperty(host => host.HostName);
        mapping.Table("BobsHardware");
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文