NHibernate配置文件的问题
<?xml version="1.0" encoding="utf-8" ?><configuration>
<configSections>
<section name="hibernate-configuration"
type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate" />
</configSections>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2" >
<session-factory>
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider, NHibernate</property>
<property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
<property name="connection.connection_string">
server=.;uid=sa;pwd=sa;database=NHibernate
</property>
<property name="dialect">NHibernate.Dialect.MsSql2000Dialect </property>
<property name="show_sql">true</property>
<property name="proxyfactory.factory_class">NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu</property>
</session-factory>
</hibernate-configuration>
</configuration>
Configuration config = new Configuration() 实例化的时候出错:NHibernate.Cfg.Configuration”的类型初始值设定项引发异常 --------------------编程问答-------------------- 哪位大侠出手指教一下 --------------------编程问答-------------------- 自己支持一下 --------------------编程问答-------------------- http://www.cnblogs.com/time-is-life/articles/642205.html --------------------编程问答-------------------- 这个连接我看过 不是这个问题 --------------------编程问答-------------------- 又沉了 --------------------编程问答-------------------- NHibernate有文档的吧看看就好
--------------------编程问答-------------------- 可我没有发现有什么错啊 --------------------编程问答-------------------- 很冷门的问题吗
--------------------编程问答-------------------- 原来是版本问题3.3.0 换2.2的就好了
不过个新的问题:
无法编译的映射文件:testModel2.test.persons.hbm.xml
补充:.NET技术 , C#