0

到目前为止,我掌握 Fluent NHibernate 的最大障碍是为我需要通过我找到的示例(博客文章、SO 问题等)工作的类找到命名空间。我四处寻找一个 CHM 或类似 MSDN 的网站,这样可以更容易地找到东西,但我发现是空的。我可以找到 NHibernate API 文档,但找不到 Fluent NHibernate API 文档。

任何人都可以确认我需要在构建源代码后生成自己的代码,或者将我指向我错过的某个地方吗?

我一直在使用 Reflector 来查找东西并且它可以工作,但它并不理想。

4

1 回答 1

1

我建议使用某种能够自动解析命名空间的 IDE(Visual Studio、Sharpdevelop 等),然后您只需复制粘贴示例并使用它。

有用的资源

抽象的

namespace    | used for
-----------------------
.Cfg         | fluently configuring the NHibernate.Cfg.Configuration object
.Mapping     | contains classes used to create Fluent Mappings
.Automapping | all you need to automaticly create mappings for classes
.Conventions | Interfaces to define Conventions used for Auto and Fluent mappings
于 2012-10-05T09:38:40.993 回答