i have a problem with my first app with NHibernate like ORM
in this example: http://nhibernate.info/doc/tutorials/first-nh-app/your-first-nhibernate-based-application.html
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?
That overload has been removed in v2.1.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With