This is related to Azure's recently launched search service that is currently in preview form. I'm trying to figure out how to use OData's filter with collections. I know that I can do this:
$filter=Products/any(p: p eq 'WidgetA')
which will filter the Products collection by WidgetA. What I am trying to figure out is how to specify WidgetA OR WidgetB. I know that I can do this:
$filter=Products/any(p: p eq 'WidgetA') or Products/any(p: p eq 'WidgetB')
but thought there must be a more elegant or shorter way of doing this.