I have a LINQ from SQL query that returns sorted rows.
For instance, it will return: 1 1 1 1 1 1 1 1 2 2 2 3 3 3 3 3 4 4 4 4
I am looking for a way to tell the LINQ to cut & paste all the 1’s and place it after the 3’s, so it will look 2 2 2 3 3 3 3 3 1 1 1 1 1 1 1 4 4 4 4 .
What is the most efficient way to relocate its pointers? (without selecting & deleting & copying)
thanks
Try