I am new with Linq and I would like to sort some data that are in the BindingList. Once I did my Linq query, I need to use back the BindingList collection to bind my data.
var orderedList = //Here is linq query return (BindingList<MyObject>)orderedList;
This compiled but fails in execution, what is the trick?
1 Answer