Reputation: 838
I have made some classes and their mapping classes using NHibernate and done configuration. Is it possible to update the database schema accordingly without make any manual update?
Upvotes: 1
Views: 1178
Reputation: 15293
Honestly I think it's safer to create scripts to do this than to rely on nhibernate to do it for you but some updates may be possible. See the below:
How to update database table schemas with NHibernate schema generation?
Upvotes: 2