If I have two entities in my model, "People" and "Addresses", and a particular Person has zero or more addresses, accessed via an AddressList navigation property, can I write an OData query that answers the following question:
"Which people have a last name ending in Smith and at least one address?"
It seems to me I can only do one predicate here, e.g.
http://localhost:55100/DemographicsDataService.svc/People?$filter=endswith(LastName,'Smith')
(I'm not yet convinced I can even write a $filter to handle the second predicate.. in which case, assume I'm trying to answer the question, "Last name ending in smith and first name starting with Mary")