vote up 2 vote down star

See the code below, I don't know why my ordering is not working, any ideas?

var orderSample = new { ProductName = "", Qty = 0, UserFullName = "" };
var ordersList = (new[] { orderSample }).ToList();

//loop thru another collection and fill ordersList by adding an order at a time
ordersList.Add(new { ProductName = "Product1", Qty = 5, UserFullName = "Mr. Smith" });

//sort the orders by name - DOESN'T WORK
ordersList.OrderBy(p => p.ProductName);

gvReport3.DataSource = ordersList;
gvReport3.DataBind();
flag

1 Answer

vote up 6 vote down check
var sortedList = ordersList.OrderBy(p => p.ProductName).ToList();

OrderBy() returns a sorted collection, it does not modify the ordersList.

If you need to modify the ordersList, use Sort instead.

link|flag
thanks, works great !!! – roman m May 5 at 5:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.