nhibernate返回一个空集合

时间:2013-08-24 06:50:15

标签: c# nhibernate

我有一个场景,我正在保存一个对象图,我需要稍后在另一个进程中检索它。简单的数据管理就是真的。

问题在于,在成功保存对象及其关联集合之后 - 如输出插入语句所示 - 对同一对象的后续查询返回其关联集合的空集合。我甚至在此之前打电话给Flush()。奇怪的是,关闭并重新打开应用程序会使其返回已填充的集合。

我有这个Appointment类的映射

<set name="workhours" inverse="true" cascade="all" lazy="true">
  <key>
    <column name="person" />
  </key>
  <one-to-many class="workhour" />
</set>

这是数据检索的代码

Method1()
{
 DataAccessManager.StartOperation();
        IEnumerable<Entity> q = GetQueryProvider();
        if (total > 0)
        {
            q = q.Skip(startIndex).Take(total);
        }
        totalfound = q.Count();
        IList<Entity> list = q.ToList();
        DataAccessManager.EndOperation();
        return list;
}
protected override IEnumerable<Entity> GetQueryProvider()
    {
        return DataAccessManager.GetQueryProvider<Appointment>();
    }

这是为了保存

        if (this.Patient.Appointments== null)
            this.Patient.Appointments= new Iesi.Collections.Generic.HashedSet<Appointment>();
        this.Patient.Appointments.Add(this);

        if (this.Doctor.Appointments== null)
            this.Doctor.Appointments= new Iesi.Collections.Generic.HashedSet<Appointment>();
        this.Doctor.Appoint.Add(this);
        Entity ent = base.Save();
        return ent;

      //the base call:
      DataAccessManager.StartOperation();

        try
        {
            Entity t = DataAccessManager.Save<Entity>(this);
            DataAccessManager.EndOperation();
            return t;
        }
        catch (NHibernate.HibernateException ex)
        {
            //handling            }

//the Data Access save method

 public T Save<T>(T t) where T : Entity
    {

        try
        {

            CurrentSession.SaveOrUpdate(t);

            return t;
  }
 ///exception handling and stuff
  }

我使用Commit()和Disconnect()结束会话。

1 个答案:

答案 0 :(得分:0)

别介意,我没有在保存之前设置关联。