7

問題が発生しました

実行時には、常に次のようになりますNHibernate.MappingException

"Could not compile the mapping document: GI.InventoryManager.CYB.Mappings.Part.hbm.xml"

はい、そのビルド アクションは に設定されていEmbedded Resourceます。InnerException は次のように述べています。

"Could not find the dialect in the configuration"

必要な情報

という名前の構成ファイルは次のhibernate.cfg.xmlとおりです。

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration  xmlns="urn:nhibernate-configuration-2.2" >
  <session-factory>
    <property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
    <property name="connection.connection_string">
        Server=(local);initial catalog=GI_IM_CYB;Integrated Security=SSPI
    </property>
    <property name="adonet.batch_size">10</property>
    <property name="show_sql">false</property>
    <property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property>
    <property name="use_outer_join">true</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.Castle.ProxyFactoryFactory,     NHibernate.ByteCode.Castle</property>
  </session-factory>
</hibernate-configuration>

実際には、次の情報のみを変更したConfiguration_Templatesフォルダーからコピーして貼り付けたものです。

Session Factory: "Removed the NHibernate.Test namespace and let the property for itself"
Dialect: "From MsSql2000Dialect To MsSql2005Dialect"
Connection_String: "I changed the Initial Catalog attribute to input my own database name"
Factory Class: "From LinFu to Castle"

そして、これが私のコードでの使用方法です。

private void configBackgroundWorker_DoWork(object sender, DoWorkEventArgs e) {
    Configuration c = new Configuration();
    c.AddAssembly(typeof(Part).Assembly);
    lock (_sessionFactory) {
        _sessionFactory = c.BuildSessionFactory();
    }
}

追加情報

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" auto-import="true" assembly="GI.InventoryManager.CYB" namespace="GI.InventoryManager.CYB.Types">
  <class name="Part" table="Parts" lazy="true">
    <id name="Id" column="part_id">
      <generator class="native"/>
    </id>
    <properties name="Description"/>
    <properties name="Number"/>
    <properties name="InStockQty"/>
    <properties name="Cost"/>
  </class>
</hibernate-mapping>


public class Part {
    #region Private Members

    private string _description;
    private string _number;

    #endregion
    #region Constructors

    /// <summary>
    /// Initializes an instance of the GI.InventoryManager.CYB.Types.Part class.
    /// </summary>
    public Part() { }

    #endregion
    #region Properties

    /// <summary>
    /// Gets or sets the description of this part.
    /// </summary>
    public virtual string Description {
        get {
            return _description;
        } set {
            if (!string.IsNullOrWhiteSpace(value))
                _description = value.Trim();
        }
    }

    /// <summary>
    /// Gets the underlying datastore unique identifier.
    /// </summary>
    public virtual int Id { get; private set; }

    /// <summary>
    /// Gets or sets the user-defined number.
    /// </summary>
    public virtual string Number {
        get {
            return _number;
        } set {
            if (!string.IsNullOrWhiteSpace(value))
                _number = value.Trim();
        }
    }

    /// <summary>
    /// Gets or sets the in-stock quantity.
    /// </summary>
    public virtual int InStockQty { get; set; }

    /// <summary>
    /// Gets or sets the cost.
    /// </summary>
    public virtual double? Cost { get; set; }

    /// <summary>
    /// Gets the inventory value for this part.
    /// </summary>
    /// <remarks>
    /// <para>
    /// This read-only property returns the product of <see cref="T:InStockQty"/> and <see   cref="Cost"/>. 
    /// In case the <b>Cost</b> property does not have a value, zero is returned.
    /// </para>
    /// </remarks>
    public double InventoryValue {
        get {
            if (Cost.HasValue)
                return InStockQty * Cost.Value;
            return 0.0;
        }
    }

    #endregion
    #region Methods



    #endregion
}

環境

  1. Windows 7 プロ;
  2. .NET 4.0 をターゲットとする Visual Studio 2010。
  3. NHibernate 3.0.0.GA;
  4. SQL サーバー 2005。

質問

私はすでに方言プロパティを構成の行に入れようとしましたが、どちらも機能しませんでした。

私が持っているこの方言の問題を解決するにはどうすればよいですか?

4

2 に答える 2

10

私には問題ないように見えます...これらの関連する質問を見ましたか:

これらは、特定の例外を発生させる可能性のある簡単な間違いです。

于 2011-01-08T13:01:01.117 に答える
3

この問題を解決するには、次の 2 つの方法があります。

これを使用しないでください:

Configuration c = new Configuration();

代わりに、これを使用します。

Configuration c = new Configuration().Configure();

hibernate.cfg.xml ファイルでこれを行っていることを確認してください。

<mapping assembly="Your assembly"/>

また

AddAssembly(Assembly.GetCallingAssembly());

両方を行うと、問題が発生します。

于 2012-07-19T16:51:29.580 に答える