Hi i have a problem with my first app with NHibernate like ORM
in this example: http://nhforge.org/wikis/howtonh/your-first-nhibernate-based-application.aspx
they use this simple test:
public void Can_generate_schema()
{
var cfg = new Configuration();
cfg.Configure();
cfg.AddAssembly(typeof (Product).Assembly);
new SchemaExport(cfg).Execute(false, true, false, false);
}
but i cant find Execute method for 4 parameters 3 only:
new SchemaExport(cfg).Execute(false, true, false);
what am i missing here?