I have two different classes that map to two different database tables. IDs are created by NHibernate using the HiLo generator:
<generator class="hilo">
<param name="table">uid</param>
<param name="column">column</param>
</generator>
Are the IDs unique across both tables if I use the same table
and column
parameters for both mappings? If not, how can I achieve this?