문제

I faced issue with nested collection in Esper. I have model like this:

myClass3{
String value;
}
myClass2{
Set<myClass3> class2Value;
}
myClass{
Set<myClass2> class1Value;
}

and try to use query like:

select * from myClass where myClass.class1value.anyOf(x=>x.class2Value.anyOf(y=>y.value like 'string'))

But in result seems like it goes not from all of collections, but only thru first collection (this compare all of values at myClass.get(0), but ignore others). How to search thru all of values which packed in myClass?

도움이 되었습니까?

해결책

This is a bug in Esper 4.10, I have created a JIRA for you: http://jira.codehaus.org/browse/ESPER-769

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top