I have a LINQ statement that generate an anonymous type, for example:
BookID, AuthorID, [Authors]*
Authors return a IEnumerable which also contains many authors, it has 2 columns: AuthorID and AuthorName
For example:
1 | 32 | 12, Author 1
20, Author 3
32, Author 19
How can I re-order the Authors object so that [32, Author 19] is on top, as:
1 | 32 | 32, Author 19
12, Author 1
20, Author 3
Thank you very much, Kenny.