I have a collection of class objects:
Tests
This collection contains many Test instances:
public class Test {
public string column1 { get; set; }
}
I would like to use LINQ to order the contents of Tests and put into a new collection called TestsOrdered. I want to order by the contents of column1. I would like to do this with LINQ as later I want to add more to the ordering.
How can I do this with LINQ.
LINQ:
Fluent :