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

マッピングと DB スキーマが同期していることを確認することをお勧めします ( SchemaValidatorを参照)。それはトリックを行う必要があります。

于 2012-06-07T09:52:46.883 に答える