I have a list that contains dates that are in GMT format.
What is the most elegant way to ensure that the following Lambda expression orders on the date field as GMT?
ProductsList.OrderBy(Product => Product.Added).ToList();
|
feedback
|
|
The inbuilt LINQ operators use the expected sort operations (for LINQ-to-Objects, it does this using
It already knows it is a
Note that this actually creates a second list (it doesn't change the ordering of the original list); you can use the code from here to do an in-place sort using lambdas:
| |||
|
feedback
|
Addedproperty contain dates for various time zones? If they are all in the same time zone, the order will not change if you just sort by the date, or if you first convert all the dates to GMT first. I guess I am missing something here... – Fredrik Mörk Feb 5 '10 at 10:50