在初始化Castle.ActiveRecord的时候,童鞋们有木有遇到初始化的时候 Error adding information from class " + model.Type.FullName +
" to NHibernate. Check the inner exception for more information的异常,那是可能因为NHibernate版本的问题.,
在配置文件,可能有的是
<add key="hibernate.connection.connection_string" value="xxx" />这样子配置,NHibernate2.0以后,已经简化了,应该改成
<add key="connection.connection_string" value="xxx" />,去掉配置前面的
hibernate.这时,运行可能出现Nbernate 出现NHibernate.Bytecode.ProxyFactoryFactoryNotConfiguredException: The ProxyFactoryFactory was not configured的异常,这时在配置文件添加<add key="proxyfactory.factory_class" value="NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle" />就好,运行一切正常
在NHibernate2.0以后,已经简化