3

如何读取 Fluent NHibernate API 生成的映射 XML 文件?

4

1 回答 1

2

配置 FluentNhibernate 后

Configuration config = new Configuration();
config.Configure();
PersistenceModel persistenceModel = new PersistenceModel ();
persistenceModel.Configure (config);

您可以使用

persistenceModel.WriteMappingsTo (path);
于 2009-01-10T08:32:59.460 回答