在nhibernate会话中获取集合

时间:2013-03-18 09:17:07

标签: c# hibernate nhibernate

一个属性有很多照片。一张照片属于一个属性。

在我的mvc控制器里面我得到的是整数的参数数组。这些整数表示我要删除的照片的ID。

我正在使用nhibernate会话和事务与db进行交互。

public ActionResult DeleteImgs(int[] data)
{
   Property p = null;
   using (ISession session = ....)
   {
      using(ITransaction transaction session.BeginTransaction())
      {            
         Photo photo = session.Get<Photo>(data[0]);
         p = session.Get<Property>(photo.Id);
         // found images and delete them
         foreach(int id in data)
         {
            Photo ph = session.Get<Photo>(id);
            //remove property from association so I can delete photo
            ph.Property = null;
            session.Delete(ph);
            session.SaveOrUpdate(ph);
         }
         //load property now with collection of remaining photos
         // here IS THE PROBLEM, Even there is photos inside collection
         // in debug I'm getting empty collection
         p = session.Query<Property>().
             .Fetch(x=>x.Photos).ToList() //empty?
             .FirstOrDefault;

         transaction.Commit();
      }
   }
   return View();

}

1 个答案:

答案 0 :(得分:0)

因为我只是将IEnumerable的照片发送到视图问题就这样解决了, 而不是发送延迟加载属性照片集合我发送IEnumerable像这样的照片

IEnumerable<Photo>photos = session.Query<Photo>().Where(x => x.Property == p).ToList();