How to apply filtering conditions on expanded entities in OData ?
Suppose I have master entity as home having fields
home
homeId, StateId, C
Using the $expand keyword OData query should be something like:
/home/?$filter=state/statename eq 'STATE' and county/countyname eq 'COUNTY'&$expand=state,county&$select=homeId, Address