0

一处房产有很多照片。一张照片属于一个财产。

在我的 mvc 控制器中,我得到了整数参数数组。这些整数代表我要删除的 Photo 的 id。

我正在使用 nhibernate 会话和事务与数据库交互。

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();

}

4

1 回答 1

0

由于我只是将 IEnumrable 的照片发送到视图问题是这样解决的,而不是发送延迟加载属性照片集合,我正在发送 IEnumerable 的照片像这样

IEnumerable<Photo>photos = session.Query<Photo>().Where(x => x.Property == p).ToList();   
于 2013-03-18T09:39:54.247 回答