Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I posted the question in the Fluent-NHibernate newgroup but so far there has been no answer from the void.

Is there a Fluent NHibernate mapping for the NHibernate "trigger-identity" method of generating primary keys.

Thanks

share|improve this question
If you use GenerateBy.Identity() does it fails ? – Dani Nov 12 '09 at 16:43
GenerateBy.Identity() uses a hibernate sequence and generates the following SQL INSERT INTO schema.table (table_id,...) VALUES (schema.hibernate.sequence, ...) returning table_id into :nhIdOutParam The entities in question have their IDs assigned by a trigger that generates the ID before insertion. – Dave Nov 12 '09 at 17:42

4 Answers

Try this:

this.Id(x => x.Id).Column("ID").GeneratedBy.Custom("trigger-identity");
share|improve this answer
tried this with Fluent build 636 and it works (need this for my project, too) – devio Apr 14 '10 at 9:38

Just to keep this discussion up-to-date :

this.Id(x => x.Id, "id").GeneratedBy.TriggerIdentity();

-> Fluent NHibernate V.1.1.0.685

share|improve this answer

So it turns out that trigger-identity is not currently supported.

share|improve this answer

So far, the only solution I've found is to use an hbm.xml file for those entities that require trigger-identity generators. However, we ran into another problem when using trigger-identity and "long" ids and our Oracle database . There is a bug where NHibernate does not translate the Id values returned from properly. Here is the JIRA entry:

http://216.121.112.228/browse/NH-1893?page=com.atlassian.streams.streams-jira-plugin%3Aactivity-stream-issue-tab

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.