[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);
}
我正在阅读 Nhibernate 的教程,上面的代码是我在测试应用程序中运行的。
安装的 VS10 似乎无法识别函数最后一行的 new 运算符,并且总是报错误使用 Execute 方法的错误,该方法不仅需要 4 个参数。