无效的转换(检查您的映射是否存在属性类型不匹配)

时间:2013-11-13 16:56:17

标签: c# hibernate nhibernate

方案
我在DB中有一个类别类:

CREATE TABLE [dbo].[Category](
    [pk_cat_id] [int] NOT NULL,
    [name] [varchar](50) NOT NULL,
    [parent_cat_id] [int] NULL
 CONSTRAINT [PK_Category] PRIMARY KEY NONCLUSTERED 
(
    [pk_cat_id] ASC
))

enter image description here

类别类与自身有关联。它是一种递归的双向关联(多对一和一对多)。 两者都引用相同的外键列:parent_cat_id 一个类别最多可以有一个父类,没有或多个子类别。

这是Category.hbm.xml:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns ="urn:nhibernate-mapping-2.2"
                   assembly ="NHibernateIntro.Core"
                   namespace ="NHibernateIntro.Core.Domain">

  <class name="Category" table="Category">

    <id name="CategoryId" column="pk_cat_id">
      <generator class="hilo"/>
    </id>

    <property name="Name" column="name" type="string" length="50" not-null="true" />

    <many-to-one name="ParentCategory" class="Category" column="parent_cat_id" />

    <bag name="childCategories" cascade="all-delete-orphan" inverse="true">
      <key column="parent_cat_id"/>
      <one-to-many class="Category"/>      
    </bag>

  </class>
</hibernate-mapping>

这是Category.cs:

using System;
using System.Collections.Generic;
using Iesi.Collections.Generic;

namespace NHibernateIntro.Core.Domain
{
    public class Category
    {
        private Category parent_category;
        private ISet<Category> child_Categories = new HashedSet<Category>();

        public virtual int CategoryId { get; set; }
        public virtual string Name { get; set; }

        public Category() { }

        public Category( string cat_name )
        {
            Name = cat_name;
        }

        public virtual Category ParentCategory 
        {
            get
            {
                if (parent_category == null)
                    parent_category = new Category();

                return parent_category;
            }
            set{ parent_category = value; }
        }

        public virtual ISet<Category> childCategories
        {
            get { return child_Categories; }
            set { child_Categories = value; }
        } 
    }
}

这是主要方法:

public static void Run(ISessionFactory factory)
{
    int computerId = 1;

    using (ISession session = factory.OpenSession())
    using (session.BeginTransaction())
    {
        Category computer = session.Get<Category>(computerId); // **This line causes   Error(stated below)**
// Please see 'CONFUSING' tag below.
            Category laptops = new Category("Laptops");
            computer.childCategories.Add(laptops);
            laptops.ParentCategory = computer;
            session.Save(laptops);
            session.Transaction.Commit();
        }
    }

CONFUSING :当我调试代码时,它停留在此行:“set {parent_category = value;}”。我很困惑,因为我正在分配给Cateory那么为什么在这里调用parentCategory的setter?

错误: 无效的转换(检查您的映射是否存在属性类型不匹配);  NHibernateIntro.Core.Domain.Category

的setter

内部错误:无法转换类型为'NYHibernate.Collection.Generic.PersistentGenericBag 1[NHibernateIntro.Core.Domain.Category]' to type 'Iesi.Collections.Generic.ISet 1 [NHibernateIntro.Core.Domain.Category]'的对象。

kINDLY hELP !!

2 个答案:

答案 0 :(得分:5)

在映射文件中使用 set 而不是bag。因为ISet无法转换为IList,并且包映射与.NET IList兼容

答案 1 :(得分:5)

更改

private ISet<Category> child_Categories = new HashedSet<Category>();

private ICollection<Category> child_Categories = new HashSet<Category>();

它应该有效。请注意,我使用的是C#HashSet,而不是Iesi.Collections HashedSet。更新版本的NHibernate可能直接支持HashSet。