I have this piece of code that filters an EntityCollection by a given PredicateExpression:
EntityCollection<StatCrewGameActionMVEntity> all = ...snip...
// create filter
IPredicateExpression filter = new PredicateExpression();
...snip...
// get the elements that match the constructed filter
List<int> matches = all.FindMatches(filter);
How can I do the same for a Typed View? For now I am only able to use
MyTypedViewRow[] filtered = myTypedView.Select(string filterExpression);