NHibernate 中的自定义 ID 生成器

发布于 2024-10-13 04:31:56 字数 799 浏览 4 评论 0原文

大家好,

如何一起执行生成器类=“分配”和生成器类=“本机”的功能。

就我而言,某些情况下我会有 ID,另一种情况下我不知道 ID。

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="Acurus.Capella.Core.DomainObjects" assembly="User">
  <class name="UserLookup, Core" table="User_lookup" lazy="true">
    <id name="Id" column="User_ID">
      <generator class="assigned" />
    </id>


<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="Acurus.Capella.Core.DomainObjects" assembly="User">
  <class name="UserLookup, Core" table="User_lookup" lazy="true">
    <id name="Id" column="User_ID">
      <generator class="native" />
    </id>

HI all,

How to do functionality of generator class="assigned" as well as generator class="native" together.

in my case some situation i will have ID another case i dont know the ID.

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="Acurus.Capella.Core.DomainObjects" assembly="User">
  <class name="UserLookup, Core" table="User_lookup" lazy="true">
    <id name="Id" column="User_ID">
      <generator class="assigned" />
    </id>


<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="Acurus.Capella.Core.DomainObjects" assembly="User">
  <class name="UserLookup, Core" table="User_lookup" lazy="true">
    <id name="Id" column="User_ID">
      <generator class="native" />
    </id>

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

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

发布评论

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

评论(1

千と千尋 2024-10-20 04:31:56

您可以使用来自 NHibernate.Id.Assigned 的代码以及与您的数据库相对应的任何“本机”具体实现(例如 NHibernate)来编写自己的 IIdentifierGenerator 实现。 Id.IdentityGenerator

然而,由于 ID应该毫无意义,我不知道为什么在持久化实体之前要“拥有 ID”。

You can write your own implementation of IIdentifierGenerator using code from both NHibernate.Id.Assigned and whatever concrete implementation of "native" corresponds to your DB, like NHibernate.Id.IdentityGenerator.

However, as Ids should be meaningless, I don't know why you would "have ID" before persisting an entity.

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