簡體   English   中英

無法編譯映射文檔,無法實例化方言 class Nhibernate.Dialect.MsSql2008Dialect

[英]Could not compile the mapping document, Could not instantiate dialect class Nhibernate.Dialect.MsSql2008Dialect

我正在使用帶有 NHibernate 3.2.0.GA 的 Visual Studio 2010,我確實有一個帶有以下 Web.Config 文件的 web 應用程序:

<?xml version="1.0"?>

<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->

<configuration>
  <configSections>
    <section name="hibernate-configuration"
             type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate"/>
  </configSections>
  <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
    <session-factory name ="Nhibernate.Test">
      <property name="connection.driver_class">
                NHibernate.Driver.SqlClientDriver</property>
      <property name="connection.connection_string">
        Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Users\Mahshid\Desktop\BugTracker\BugTracker\App_Data\BugTrackerDB.mdf;
        Integrated Security=True;User Instance=True
      </property>
      <property name ="adonet.batch_size">10</property>
      <property name="show_sql">true</property>
      <property name="dialect">Nhibernate.Dialect.MsSql2008Dialect</property>
      <property name="command_timeout">60</property>
      <property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>
      <property name="proxyfactory.factory_class">NHibernate.ByteCode.LinFu.ProxyFactoryFactory,
                                                  NHiberante.ByteCode.LinFu</property>
    </session-factory>
  </hibernate-configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
</configuration>

我在 vs2010 中添加了我的 sql 數據庫作為本地數據庫,我也有兩個 nhibernate hbm.xml 文件,如下所示:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
                   namespace="BugTracker.Model"
                    assembly ="BugTracker">
  <class name="Bug" table ="Bugs" lazy="false">

    <id name ="BugId" column ="BugId" type="int"
         unsaved-value="0">
      <generator class="native"/>
    </id>

    <property name="Desc" column="Description"/>

    <property name="Fixed" column ="Fixed"/>

    <many-to-one  name="Application"
                  class="Application"
                  column="ApplicationId"
                  cascade="all"
                  not-null="true"/>
  </class>
</hibernate-mapping>

和:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="BugTracker.Model"
                   assembly="BugTracker">
  <class name="Application" table="Applications" lazy="false">
    <id name="ApplicationId" column ="ApplicationId" type="int" unsaved-value ="0">
      <generator class ="native"></generator>
    </id>

    <property name ="Name" column="Name"/>

    <component access ="field.camelcase-underscore" name ="Developer"
               class="Developer">
      <property access ="field.camelcase-underscore" 
                column ="DeveloperFirstName" name="FirstName"/>
      <property access ="field.camelcase-underscore" 
                column="DeveloperLastName" name="LastName"/>
    </component>

    <bag cascade="all-delete-orphan"
          inverse ="true"
          name ="Bugs"
          lazy="false"
          access ="field.camelcase-underscore">
      <key column ="ApplicationId"/>
      <one-to-many class ="Bug"/>
    </bag>

  </class>
</hibernate-mapping>

我將它們設置為嵌入式資源,相信我,但我在以下代碼部分中遇到異常:

private static void Init()
{
    NHibernate.Cfg.Configuration config;

    config = new NHibernate.Cfg.Configuration();
    config.AddAssembly("BugTracker");
    config.Configure();

    _SessionFactory = config.BuildSessionFactory();
}

使用此消息:

Could not compile the mapping document: BugTracker.Model.Bug.hbm.xml

內部異常消息:

Could not instantiate dialect class Nhibernate.Dialect.MsSql2008Dialect

我知道這是初學者的問題,但我只是一個新手。 但我很欣賞你的想法......

方言的名稱不應該是NHibernate.Dialect.MsSql2008Dialect嗎? 我的意思是H必須是大寫?

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM