Sufyan Ahmad
Sufyan Ahmad

Reputation: 838

How to update the database schema using NHibernate

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

Answers (1)

Cole W
Cole W

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

Related Questions