or
grid.FilterDescriptors[i] = new ColumnFilterDescriptor(newColumn){ FilterDescriptors = oldColumnDescriptor.FilterDescriptors, LogicalOperator = oldColumnDescriptor.LogicalOperator, Column = newColumn};Is it possible to write unit test against the VirtualQueryableCollectionView? I tried to write a unit test to verify the VirtualItemCount, but it seems that the collection is tightly coupled to the UI components and therefore requires tests to run on a STA thread. Is this correct?

