2012-06-06 61 views
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?); 

如何正確使用此方法?

回答

1

我建議你驗證你的映射和你的數據庫模式是同步的(見SchemaValidator);這應該夠了吧。

相關問題