Creating a list of entities that supports IBindingListView?
问题 I use the following code in my data repository to return a list of entities. I want to bind to the list using a winforms bindingsource, and then to be able to support and filter the bindingsource I currently use something like mybindingSource.datasource = repository.GetList(p => p.Id > 0 && p.Archived == false, x => x.Organisation); however mybindingSource.SupportsFilter returns false. The repository function is public virtual IList<T> GetList(Func<T, bool> where, params Expression<Func<T,