Hi
I looked at that before but that issue can be represented in SQL like this
Select Car from Car a where a.enum1 is ('blue','red');
I want the following as result
Select a.enum1 from Car a
Now since the enum1 is an enum within the Car object that is my issue as to how to represent it in String in the result.