How to use extensions Method in LINQ?
LINQ also provides you extension methods those can be used to manipulate data, few extension methods are – Where(predicate):- it will get you all instances who satisfies the predicate.OrderBy(fieldname) :- sort the data in ascending orderOrderByDescending(fieldname) :- in descending orderSingle(predicate) : – find single instance who satisfies the predicate, if found returns it, if not […]
Read More