I use Asp.net 4 and C#, Linq and EF 4.
I need to retrieve in the reverse order how how they were entered instances for a Custom DataType (in my case CmsCategory).
The collection will contain maximum 10 items.
Which System.Collections.Generic fits in this situation?
You should use the generic Stack:
Or just use a simple List and then call Reverse():