2012-10-05 68 views
0

到目前为止,我最大的障碍是要找到我需要通过样本找到的类的名称空间(博客帖子,SO问题等)。我已经寻找了一个可以更容易地找到东西的CHM或类似MSDN的网站,但我已经空了。我可以找到NHibernate API文档,但不是流利的NHibernate API文档。流利的NHibernate API文档

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

我一直在使用反射器来查找东西,它的工作原理,但它并不理想。

回答

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 
+0

我怎么会可能使用VS只要我有,从来没有注意到它的名称空间解析的支持?谢谢! – DocMax