I love Fluent NHibernate for building my DBs and so far haven't found a restriction that has halted me in my tracks.
However on my current project I expect to release to production very early in the product lifecycle and hence expect there to be many small changes in the db schema as we progress.
I'd like to track these DDL amd DML changes in "migrations", using a tool like migratordotnet. But my question is: Is it possible to get these two tools (or similar tools) working together?
In the spirit of DRY, how can I derive my schema changes from my mappings in Fluent Nhibernate? Is this possible?
Or is a better approach to leave schema generation to a tool such migratordotnet and leave Fluent NHibernate with the responisibility of mapping only? Hmm, this does seem like a better seperation of concerns at a tool level.
Cheers!