tags:

views:

132

answers:

1

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?

+2  A: 

That overload has been removed in v2.1.

Krzysztof Koźmic
msony
David Mohundro