Is it possible to generate the database schema from the Nhibernate mappings DLL?
My requirements is for MySQL. If so, how do I do that? Are there tools/scripts for th
I use this code :
public void CreateDatabaseSchemaFromMappingFiles() { NHibernate.Cfg.Configuration cfg = new NHibernate.Cfg.Configuration(); cfg.Configure(); NHibernate.Tool.hbm2ddl.SchemaExport schema = new NHibernate.Tool.hbm2ddl.SchemaExport(cfg); schema.Create(false, true); }