LINQ tutorials and Resource Links

Want to learn LINQ(Language Integrated Query) in .NET ? In this blog post , I will share links to some LINQ tutorials that the developers find interesting and useful to get started with.

What is LINQ ?

LINQ stands for Language Integrated Query . According to MSDN ,

“Language-Integrated Query (LINQ) is a set of features introduced in Visual Studio 2008 that extends powerful query capabilities to the language syntax of C# and Visual Basic.”

LINQ tutorial Links

Below are some of the links or resources to get to know more about LINQ.

The above one’s are some of the good tutorials and blog links to learn more about LINQ .

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...