BindingListView – The DataView equivalent for custom collections
BindingListView<T> is a project hosted on GotDotNet that gives you search, sorting and filtering capabilities to a plain BindingList. For example if you have the following Person entity: [csharp] public class Person { string firstName = string.Empty; int age = 0; public...
