NHibernate:如何解决这个“方言”配置问题

时间:2011-01-08 10:34:54

标签: .net nhibernate dialect nhibernate-configuration

遇到问题

在运行时,我总是得到以下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 Pro;
  2. Visual Studio 2010,面向.NET 4.0;
  3. NHibernate 3.0.0.GA;
  4. SQL Server 2005。
  5. 问题

    我已经尝试将dialect属性放在配置行上,但它既不起作用。

    如何解决我的这个方言问题?

2 个答案:

答案 0 :(得分:10)

对我来说很好......你见过这些相关的问题:

这些容易犯的错误可以引发特定的异常。

答案 1 :(得分:3)

有两件事可以解决问题:

不要使用它:

Configuration c = new Configuration();

相反,请使用:

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

确保在hibernate.cfg.xml文件中执行此操作:

<mapping assembly="Your assembly"/>

OR

AddAssembly(Assembly.GetCallingAssembly());

两者都会产生问题。