Is it possible to filter an ObservableCollection by using an Operator LIKE, like in SQL 2014.
Ex SQL : SELECT * FROM Customer WHERE Name LIKE 'Cal%'
I need the same kind of filtering but with ObservableCollection, I know you have the Where from the Linq library, but it looks only for a EXACT string
Thanks