到目前为止,掌握流利的NHibernate的最大障碍是为我需要的类找到名称空间,以便处理我找到的示例(博客帖子,所以问题等)。我四处寻找一个类似CHM或MSDN的站点,它们可以更容易地找到东西,但我一无所获。我可以找到NHibernate API文档,但找不到流畅的NHibernate API文档。
有没有人可以在构建源代码后确认我需要生成自己的源代码,或者将我指向我错过的地方?
我一直在使用Reflector查找东西,它很有效,但它并不理想。
发布于 2012-10-05 17:38:41
我建议使用某种能够自动解析名称空间的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 mappingshttps://stackoverflow.com/questions/12739847
复制相似问题