As I'm working more and more with Entity Classes and Collections of them, I'm running into some interesting problems. I've been able to DataBind my classes to things like DataGrids, no problem, but I'm finding myself wishing there were such a thing as a CollectionView class. This would function like a DataView class does for DataBinding controls to DataSets. Basically, what I need is a bind-able object that I could associate with my Entity Collections with a Filter property that would serve to show a subset of the entities in my collection that matched my view - or er... just what a DataView does, but for collections.
I have found a reference to System.ComponentModel.CollectionView, in the Longhorn SDK, but not sure if this is the same, and well, it's Longhorn. Does anyone know if there's anything like this that can be used today?
-Brendan