When using QueryableCollectionView, it takes an IEnumerable as source. Are there any further requirements on the type of the individual items?
My input data is an object-array, and in the code I'm currently investigating a DataTable is created and its DefaultView is used as input to the QueryableCollectionView. I was wondering if I could just skip the DataTable and just use a List<object[]> instead. Apparenty not, but I'm curious as to why?