Is it possible to generate the database tables and c# classes from NHibernate config files? Afterwards, is it possible to change the config files and update the tables and
As mentioned by Joachim, it's the "hbm2ddl.auto" setting that you're looking for.
You can set it by code like this:
var cfg = new NHibernate.Cfg.Configuration(); cfg.SetProperty("hbm2ddl.auto", "create"); cfg.Configure();
And you can also set it in your App.config file:
create