流畅的NHibernate API文档

时间:2012-10-05 05:09:43

标签: fluent-nhibernate documentation

到目前为止,获得Fluent NHibernate的最大障碍是找到了我需要通过我找到的样本(博客文章,SO问题等)处理的类的命名空间。我已经四处寻找可以更容易找到东西的CHM或类似MSDN的网站,但我已经空了。我可以找到NHibernate API文档,但不能找到Fluent NHibernate API文档。

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

我一直在使用Reflector找到它并且它有效,但它并不理想。

1 个答案:

答案 0 :(得分: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
相关问题