-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Criteria.AddOrder- SQL correct but wrong order returned
PostPosted: Thu May 05, 2011 6:19 pm 
Newbie

Joined: Thu May 05, 2011 6:07 pm
Posts: 1
We're trying to use an Order By clause on our database, on a child object. The SQL trace shows that NHibernate is sending the correct SQL to the database (i.e. the Order By clause is correct). But for some strange reason, the objects in the object graph are in the wrong order. this is the code we're using:
Code:
           ICriteria criteria = CurrentSession.CreateCriteria(typeof(PurchaseOrder));

           criteria.Add(Restrictions.Eq("PurchaseOrderId", id)).UniqueResult<PurchaseOrder>();
           criteria.Add(Restrictions.Eq("ActiveFlag", true)).UniqueResult<PurchaseOrder>();
           criteria = criteria.CreateCriteria("PurchaseOrderLineItems");
           criteria = criteria.CreateCriteria("Disposition");
           criteria.AddOrder(Order.Asc("SortOrder"));
           
           PurchaseOrder x = criteria.UniqueResult<PurchaseOrder>();

           //initialise other collections here
           NHibernateUtil.Initialize(x.Vendors);
           NHibernateUtil.Initialize(x.Operators);
           NHibernateUtil.Initialize(x.PurchaseOrderLineItems);


So in a nutshell, our main object is PurchaseOrder, this contains a PurchaseOrderLineItems collection, each PurchaseOrderLineItem has a Disposition object with a SortOrder property, which is what we're trying to sort by. If we examine variable x, the PurchaseOrderLineItems collection is never returned in the correct order, although the SQL executed is right (we're checking the log file for the SQL).

The OrderBy seems to work on the properties of the parent (PurchaseOrder) object, when drilling into children this seems to fail. Are we doing anything daft here?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.