hi to all
iam new to c# can anyone explain about Linq,how to use it , please give some easy examples
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
srinivas reddyPosted Dec 28, 2009, 8:03 AM
For the most part, LINQ is all about queries, whether they are queries returning a set of matching objects, a single object, or a subset of fields from an object or set of objects. In LINQ, this returned set of objects is called a sequence. Most LINQ sequences are of type IEnumerable
In the previous examples, all of the queries actually return an IEnumerable