SQL Server - What is LINQ? Explain its features - Feb 27,
2010 at 11:50 AM by Shuchi Gauri
What is LINQ? Explain its features
LINQ is a set of extensions to .Net framework that allow for language integrated
query, set and transform operations. It extends C# and VB.Net with native
language syntax for queries and provides libraries to take advantage of LINQ’s
capabilities.
LINQ has following capabilities:
-
LINQ to objects: deal with in-memory data.
-
LINQ to ADO.Net: deals with data from external data sources, anything supported
by ADO.Net.
-
LINQ to XML: API for in memory XML programming.
SQL Server - What is LINQ? Explain its features - May 05,
2009 at 22:00 PM by Rajmeet Ghai
What is LINQ? Explain its features
Language Integrated Query allows different features to be integrated in the
basic programming language used in an application. These features can be the
native query capabilities to .NET languages.
-
LINQ provides many query operators that can be used in a query, classes, and
relational databases.
-
Provides language extensions to strengthen the queries.
-
LINQ can not just be used in queries but also with objects, XML and SQL server
databases.
SQL Server - What is LINQ? - May 18, 2009 at 10:00 AM by Rajmeet
Ghai
What is LINQ?
Language Integrated Query (LINQ) extends the .NET framework to more queries,
operators etc. These queries and operators can be used in arrays, classes and
other third party sources. It helps to program inline data in .NET type
languages.
SQL Server - What is LINQ? - June 21, 2009 at 09:00 AM by Amit
Satpute
Language Integrated Query:
LINQ is the composition of general purpose standard query operators that allow
traversal, filtering and projection of data irrespective of the source of data
within .NET.
The LINQ query operators use an in-memory XML facility to provide the XPath
& XQuery functionalities in the .net based language to act on XML.
The LINQ query operators act on relational data built on integration of
SQL-based schema definitions into the CLR.
Also read
It is a technique for querying data that is integrated into .NET languages such
as C# and VB. As such, it is both strongly typed and IntelliSense-aware.
Answer - SQL Server uses different ways to execute SQL
statements which are listed below......
Answer - SQL Server supports searches on character string
columns using Full-Text Query......
|