-->
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: can't use Nullable Type in the Expression?
PostPosted: Thu Sep 15, 2005 12:46 am 
> Hi:
> how are you!
>
> for example:
> ICriteria cri = session.CreateCriteria(entity.GetType());
>
> cri.Add(Expression.Between("DisplayOrders", 0, 5));
>
> IList result = cri.list() //TODO:Error
>
> "DisplayOrders", this is a property Name,type is NullableInt32.
>
> but I can't use Nullable type query data.
>
>
> thank you!


Top
  
 
 Post subject:
PostPosted: Thu Sep 15, 2005 4:26 am 
Contributor
Contributor

Joined: Wed May 11, 2005 4:59 pm
Posts: 1766
Location: Prague, Czech Republic
Try this:
Code:
cri.Add(Expression.Between("DisplayOrders", new NullableInt32(0),
    new NullableInt32(5());


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.