-->
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: Enums and flag attribute
PostPosted: Mon Aug 29, 2005 11:29 am 
Regular
Regular

Joined: Thu May 12, 2005 10:12 am
Posts: 71
Location: Buenos Aires, Argentina
Hi, I was wondering if there is a way to implement this. In .NET you can mark Enum with the flag attribute. Suppose we have

Code:
[Flag]
enum Color
{
    Red = 1,
    Blue = 2
    RedAndBlue = Red | Blue
}


In code you can check for Blue like this:

Code:
if (e.Color & Blue) == Blue)
{
   colorful code....
}


Is there a way of doing the same in an HQL Query so that I can ask for color Blue and that the Query returns true wether it is Blue or RedAndBlue ?

Thanks!


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 30, 2005 10:40 am 
Contributor
Contributor

Joined: Thu May 12, 2005 9:45 am
Posts: 593
Location: nhibernate.org
AFAIK, it is not possible, you will have to specify each combinaison...

_________________
Pierre Henri Kuaté.
Get NHibernate in Action Now!


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.