0

我正在尝试验证已创建表。我正在使用 SQLite 和 NHibernate。

new SchemaExport(_configuration)
            .Execute(true, true, false, _session.Connection, Console.Out);


IDataBaseSchema dbMeta = new SQLiteDataBaseMetaData((DbConnection) _session.Connection);
ITableMetadata tbMeta = dbMeta.GetTableMetadata(//where do I get the datarow this method needs?, and what are the extras args?);

如何正确使用此方法?

4

1 回答 1

1

我建议您验证您的映射和数据库模式是否同步(请参阅SchemaValidator);这应该够了吧。

于 2012-06-07T09:52:46.883 回答