NHibernate 中的自定义 ID 生成器
大家好,
如何一起执行生成器类=“分配”和生成器类=“本机”的功能。
就我而言,某些情况下我会有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用来自
NHibernate.Id.Assigned
的代码以及与您的数据库相对应的任何“本机”具体实现(例如NHibernate)来编写自己的
。IIdentifierGenerator
实现。 Id.IdentityGenerator然而,由于 ID应该毫无意义,我不知道为什么在持久化实体之前要“拥有 ID”。
You can write your own implementation of
IIdentifierGenerator
using code from bothNHibernate.Id.Assigned
and whatever concrete implementation of "native" corresponds to your DB, likeNHibernate.Id.IdentityGenerator
.However, as Ids should be meaningless, I don't know why you would "have ID" before persisting an entity.