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