使用自动映射时如何关闭流畅的 nhibernate 中的标识符生成

发布于 2024-10-31 13:41:09 字数 347 浏览 0 评论 0原文

我使用 NHibernate 3.0 并进行流畅的配置。我像这样自动映射我的持久模型:

AutoMap
    .AssemblyOf<BaseEntity>()
    .Where(type => type.Namespace != null && type.Namespace.Contains("PersistendModel"))

这工作正常,但我不想使用默认的标识符生成器。我的对象已初始化 GUID Id,但就目前情况而言,它们已被 NHibernate 覆盖。

我需要添加什么(约定、覆盖、SomeThingElse?),这样就不会发生这种情况。

I use NHibernate 3.0 with fluent configuration. I automap my persistent model like this:

AutoMap
    .AssemblyOf<BaseEntity>()
    .Where(type => type.Namespace != null && type.Namespace.Contains("PersistendModel"))

This works fine, but I don't want to use the default identifierGenerators. My objects have initialized GUID Id's, but as it stands now they are overwritten by NHibernate.

What do i need to add (Convention, Override, SomeThingElse?), so this will not happen.

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

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

发布评论

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

评论(1

め可乐爱微笑 2024-11-07 13:41:09

我添加了以下约定:

public class IdConvention : IIdConvention
{

    public void Apply(IIdentityInstance instance)
    {
        instance.GeneratedBy.Assigned();
    }

}

这一次就解决了我所有持久化类的问题。

I added the following convention:

public class IdConvention : IIdConvention
{

    public void Apply(IIdentityInstance instance)
    {
        instance.GeneratedBy.Assigned();
    }

}

this does the trick for all my persisted classes in one go.

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