Can I dynamically remove sequence mapping from a column?
We have generated a DAL using LLBLGen targeting an Oracle database which includes mapping sequence names to our ID columns. Triggers are not being used.That DAL is being used in the production solution. All good.
We now wish to use the same DAL for the data migration process from an existing Oracle schema. During data migration there are some ID values that we need to maintain. However, with the sequence mapping those values are being overwritten by LLBLGen when the entity is saved. Makes sense. We could of course create another DAL model just for the migration process that does not include the sequence mapping. But as the DAL is complex we do not want to maintain the two DAL models during development. Can we use the first DAL and somehow dynamically/programmatically remove the sequence mapping for the data migration?
Thank you,