LINQ (Language Integrated Query)
What is LINQ? We'll describe what LINQ is in this first post to our new SQL Server Magazine online glossary.
LINQ
Definition: LINQ -- or Language Integrated Query -- is a .NET Framework component developed by Microsoft that provides the ability for .NET languages to perform data queries. According to Microsoft's LINQ Project website, LINQ "extends C# and Visual Basic with native language syntax for queries and provides class libraries to take advantage of these capabilities."
LINQ implements object-to-database mapping and provides a set of operators that enable the developer to create database queries directly in .NET code. The SQL-like operators support data retrieval as well as data insert, update, and delete operations—for instance, LINQ provides Select, Where, and OrderBy operators.
Alternate Spelling(s): None
Common Misspelling(s): LINK
Also Known As: N/A
Related Terms: N/A
Related Reading:
LINQ to the Future [SQL Server Magazine]
LINQ Deep Dive: Part 1 [ASP.NETPro]
Get Connected with LINQ [SQL Server Magazine]
Visual Studio 2008 Offers Plethora of New Features [Windows IT Pro]
About the Authors
You May Also Like