NHibernate:非法尝试将集合与两个打开的会话相关联

时间:2015-01-24 18:53:44

标签: c# nhibernate

我在使用NHibernate时遇到了麻烦,首先让我说我不是英语母语,好吧,让我们指出。

当我面对这个错误时,我在互联网上搜索,看到很多人都在谈论它,但大多数人都有级联属性的问题,如果我想说的话,完全不符合我的情况,或者即使它我无法通过。

我的数据库太小了,但有点复杂。 我的模型文件使用Entity Developer生成。 enter image description here

正如您所看到的那样,存在继承,一对多和多对多关系,

由于我是NHibernate的新手,我编写了一个测试代码,我的正常测试工作正常,直到我添加这个多对多关系。

所以我写这段代码:

//Owner o = new Owner
        //{
        //    //OwnerId = Guid.NewGuid(),
        //    CellPhone1 = null,
        //    CellPhone2 = "09132198895",
        //    Phone = "03114335502",
        //    Firstname = "Hassan",
        //    Lastname = "Faghihi",
        //    OwnerTitle = PersonTitle.Mr
        //};

        //OwnerFactory ownerFactory = new OwnerFactory();
        //ownerFactory.SaveOwner(o);

        //SellHouse sh = new SellHouse
        //{
        //    //ItemId = Guid.NewGuid(),
        //    Owner = o,
        //    Address = "dsasd",
        //    BuildYear = 1393,
        //    City = "Isfahan",
        //    Code = "A-512",
        //    Country = "Iran",
        //    Description = "Nothing",
        //    Dimensions = "4X5",
        //    Directions = Directions.North | Directions.South,
        //    Document = "dasd",
        //    Exchange = true,
        //    Facilities = Facilities.Elevator | Facilities.KichenMdfService | Facilities.Parking | Facilities.Warehouse,
        //    Floor = 4,
        //    HasYard = false,
        //    HouseType = HouseType.Apartment,
        //    IssueDate = DateTime.Now,
        //    Loan = 3124,
        //    Meter = 130,
        //    NumberOfBlocks = 4,
        //    NumberOfFloors = 0,
        //    OtherFacilities = "Nothing",
        //    Rooms = 2,
        //    ShareOfSixPart = 4.2f,
        //    State = "Isfahan",
        //    District = "kaveh",
        //    ExchangeDescription = "",
        //    Images = null,
        //    IsRented = false,
        //    Maps = null,
        //    MortgagePayed = 0,
        //    Price = 2222222,
        //    RentAmount = 0,
        //    Substructure = 4,
        //};

        GalleryFactory galleryFactory = new GalleryFactory();

        Gallery g = new Gallery
        {
            Image = Properties.Resources.jeans_texture03.ToByte()
        };

        galleryFactory.SaveGallery(g);

        SellHouseFactory sellHouseFactory = new SellHouseFactory();
        //factory.SaveSellHouse(sh);

        HashSet<Gallery> galleries = new HashSet<Gallery>();
        galleries.Add(g);

        SellHouse sellHouse = sellHouseFactory.GetSellHouses().FirstOrDefault();
        if (sellHouse != null)
        {
            comboBox1.SelectedIndex = (int)sellHouse.Owner.OwnerTitle;
            textBox1.Text = sellHouse.Owner.Firstname+sellHouse.Owner.Lastname;
            //sellHouse.Images = galleries;

            sellHouseFactory.SaveSellHouse(sellHouse);
        }

我创建了一个Owner的对象,然后将其保存,并将其传递给sellHouse,并将Images和Maps(这是我的多对多关系)设置为null。 所以sellHouse创建了。 然后我很想知道如何将图像或地图添加到我的sellHouse, 所以我将包含一个gallery元素的列表传递给sellHouse Maps属性。 并且它产生“非法尝试将一个集合与两个开放会话相关联”,首先我的原因是因为我的画廊在我将它传递给卖房之前没有保存,所以我按照你的代码看到了,并且做了它手动。 但它仍然继续产生错误......

我提供了所需的文件,您可以设置示例并更好地理解我的代码。

我非常渴望听到你的答案,因为我的手与我对Hibernate和NHibernate的小知识有关。

DropBox中的来源:

enter link description here

1 个答案:

答案 0 :(得分:2)

可能在您的所有工厂方法中,您都要打开一个新会话。 但是你必须在每个线程(或事务)中只打开一个会话。