I have the kendo grid, which using odata filtering. The problem is that I need to filter the property which inside collection and this collection also inside the collection.
Query: CaseStudies/ExamRecords/any(d:contains(d/LevelName,'11'))
CaseStudies
- collection
ExamRecords
- collection
LevelName
- property
I'm not familiar with odata filtering. So the question is how to correct configure request to filter this query?
Because right now I have the following error message: The parent value for a property access of a property 'ExamRecords' is not a single value. Property access can only be applied to a single value.
EDIT 1
I'm using $expand, this issue not about 'How to show collection', this issue about 'How to filter property which inside collection and collection inside collection'.