Version 2.6. Adapter.
I am trying to sort an entity collection but it doesn't appear that there is any way to do what I want.
Let's say I have the following class heirarchy.
Order
-> EntityCollection<OrderDetails>
------>OrderDetailType
NOTE: I want my OrderDetailsCollection to be sorted and remain on the Order.
I have an Order and want to sort the OrderDetails on the name of the OrderDetailType? Is there a way to do this without removing all of the items manually sorting them and then adding them back?
EntityCollection.Sort does not provide the necessary overloads to do what I want even if I implement my own IComparer.
Thanks,
Billy Jacobs