I need to generate an identity from a column in a seed table and increment the value in that column.
e.g
Seed Table:
name "analysisid"
id 1
Analysis Table:
id
name
description
On the analysis mapping I need to ensure that the id is taken from the seed table and on inserting an analysis the analysisid of the seedid is updated.Do I implement a custom class inheriting from TableGenerator?