Hi
is it possible to filter a typedview using a predicate expression?
i have the list of all active students as a typedview and would like to filter the new enrolled students only.
i know i can create the predicate and call the fill method on typedview but the typedview is a cached object. the filter method uses the typedview and the filter as its parameters.
it is something like:
FilterUsingStatus(ActiveStudentsTypedView toFilter, string status)
{
...
}
thanks in advance
-shane