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.  [ 2 posts ] 
Author Message
 Post subject: SetProjection()
PostPosted: Thu Sep 28, 2006 6:46 pm 
Newbie

Joined: Thu Sep 28, 2006 6:41 pm
Posts: 1
Hi everybody,

I downloaded the new nhibernate 1.2 beta1 and I would like to use this method setProjection() but every time, i have the same error :

'NHibernate.ICriteria' does not contain a definition for 'SetProjection'




My code :

return Session.CreateCriteria(typeof(EmailBlastClick))
.Add(Expression.In("Asset", assetsList))
.Add(Expression.Between("Date", start, end))
.SetProjection(Projections.ProjectionList()
.Add(Projections.RowCount()))
.List();

Please could you help me ? :)

Thank you very much


Top
 Profile  
 
 Post subject:
PostPosted: Thu Sep 28, 2006 11:35 pm 
Contributor
Contributor

Joined: Wed May 11, 2005 4:59 pm
Posts: 1766
Location: Prague, Czech Republic
Oops, there's only a Projection property there. I will add the method too. For now, please use the property:
Code:
ICriteria crit = session.CreateCriteria(...);
crit.Projection = myProjection


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

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.