I'm using schemaExport to create an in-memory database for my automatic tests. I have several (5) classes mapping their HiLo identity to the same database table, using one column per class.

This gives me a table, hibernate_unique_key, w. 5 columns. When generating the database using scemaexport, however, the table only gets a single column (IPoolActivation), thereby making my querys fail, since the mappings in the model are now invalid. I've tried manually querying the in memory database to create the table, but I would rather know how to make schemaexport do it right.

A snippet from one of my mapping files;

<id name="Id" column="Id" type="Int32">
  <generator class="hilo">
    <param name="column">IENPool</param>
  </generator>
</id>

What is the proper way to do this?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I believe there is a bug (or it is by design) in SchemaExport, and it only looks at the hibernate_unique_key table once when it sees the first entity with HiLo. As a result all HiLo entities must use the same column.

However, I recently needed a custom IdGenerator which I based off the same base class in NHibernate that HiLo inherits from. For this database I needed one column per table (it was for a legacy database that was setup with a HiLo style generator that way).

You can see what I did here if it helps:

Implementing a custom id Generator for nHibernate

Generate custom DDL for a custom id Generator

Entire post on nhForge

link|improve this answer
Thanks! For now i'll go with the single column solution, but i really appreciate the example. – hhravn Dec 29 '09 at 8:35
Yeah I definitely recommend that to keep it simple. I only did this because of the legacy requirement. – Chris Nicola Dec 29 '09 at 20:39
It turns out that this is by design and still causes issues for developers (including myself). Look here: nhibernate.jira.com/browse/NH-2687 – Daniel Lang Nov 17 '11 at 3:30
feedback

Your Answer

 
or
required, but never shown

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