I was just wondering what it is and I figured you guys could do a better job of answering it then google could. I know it's for databases, but what does it do?
|
|
Linq stands for Language Integrated Query Instead of writing YAQL (yet another query language), MS language developers provided a way to express queries directly in their languages (such as c# and vb). The techniques for forming these queries do not rely on the implementation details of the thing being queried, so that you can write valid queries against many targets (databases, in-memory objects, xml) with practically no consideration of the underlying way in which the query will be executed. Let's start this exploration with the parts belonging to the .Net Framework (3.5).
All of the above is part of the .Net Framework, and available from any .Net language (vb.net, c#, iron python, cobol.net ...). Ok, on to language features. I'm going to stick to C#, since that's what I know best. Vb.Net also had several similar improvements (and a couple that C# didn't get - Xml literals). This is a short and incomplete list.
|
|||
|
|
|
http://msdn.microsoft.com/en-us/netframework/aa904594.aspx "The LINQ Project is a codename for a set of extensions to the .NET Framework that encompass language-integrated query, set, and transform operations. It extends C# and Visual Basic with native language syntax for queries and provides class libraries to take advantage of these capabilities." |
||||
|
|
|
LINQ (Language INtegrated Query) may refer to:
The components may be used in isolation or combined. |
||
|
|
|
|
In a nutshell, LINQ (Language-Integrated Query) allows you to write queries directly in your code. Those queries can be on relational databases, but also on XML or in-memory container objects, such as arrays and lists. More information is available in MSDN library: http://msdn.microsoft.com/en-us/library/bb308959.aspx |
||
|
|
|
|
I'm gonna try for a simple answer: LINQ is a way for you to query your database (or other datastore, XML etc) using a query language that is similar to SQL but can be compiled inside a .NET application. |
||||
|
|
|
LINQ stands for Language Integrated Query, and is a way of providing a general purpose "querying" mechanism in the CLR. At it's most basic level, this consists of a set of methods on IEnumerable<T> - eg., Select, Sum, Where - that can be used for restrictions, projections, etc.[1] To take it a bit further, LINQ also defines a new LINQ provider model that can take an expression tree and use it to run "native" queries against a datasource outside of the CLR - eg., LINQ to SQL, LINQ to XML, LINQ to NHibernate, etc. C# and VB.NET have also defined a query syntax that allows you to write strongly typed queries inline (that looks very similar to SQL), which the compiler then translates into the equivalent IEnumerable<T> calls. To me, the most interesting thing about LINQ is all of the C# and VB.NET features that were needed to support it are useful in their own right. Extension methods, anonymous types, lambda expressions, and implicit typing were all required to support LINQ - but we tend to use those features outside of a pure LINQ context. [1] Those are relational terms, functional programmers would probably prefer Map, Reduce, Fold, etc. |
||
|
|
|
|
Here are some previously asked questions to help out: |
||
|
|
|
|
LINQ is a technology for extracting data using an idiom derived from the C# programming language. While it owes much in functional design to SQL, it is fundamentally its own data querying language. It operates across a broad spectrum of data sources (SQL databases, in-memory representations, XML, etc.). LINQ-To-SQL, in particular, should be seen as a contrast to the traditional use of embedded SQL which suffers from what is often referred to as an "impedance mismatch" between the SQL programming and C#/VB programming. For a discussion of LINQ and its limitations, you may want to take a look at this related question: Doesn’t LINQ to SQL miss the point? |
||
|
|
