欢迎使用CSDN-markdown编辑器

来源:互联网 发布:视频大数据应用领域 编辑:程序博客网 时间:2024/06/08 12:03
  1. Unrecognized configuration section hibernate-configuration.
    描述:
    无法识别的配置节点 hibernate-configuration
    原因:

    少了:<sectionname="hibernate-configuration"type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate"/>

    解决方案:

    <?xml version="1.0" encoding="utf-8" ?><configuration><!-- Add this element --><configSections><sectionname="hibernate-configuration"type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate"/></configSections><!-- Add this element --><hibernate-configuration xmlns="urn:nhibernate-configuration-2.2"><session-factory><property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property><property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property><property name="connection.connection_string">Server=.\SQLEXPRESS;initial catalog=Test;Integrated Security=true</property></session-factory></hibernate-configuration><!-- Leave the system.web section unchanged --><system.web></system.web></configuration>

    引用

    http://bbs.csdn.net/topics/330120698

0 0
原创粉丝点击