我正在尝试验证已创建表。我正在使用 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?);
如何正确使用此方法?