Sorting CollectionView using Orderby in C#
Sorting CollectionView using Orderby in C#
We already learned Filtering, lambad experssion on collection view, and the last one you may want to know how to get a sorted list from a collection view.
AsEnumerable () function makes it easier to sort collection view. In our example we had a StockView class which hold information for Stock of an inventory.
StockView
class StockView{ public string Batch{ get; set; } public int Qty{…
View On WordPress













