0
我想驗證一個表被創建。我正在使用SQLite和NHibernate。NHibernate IDataBaseSchema.GetTableMetadata方法採用數據行。我怎樣才能使用這種方法?
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?);
如何正確使用此方法?