Linq (Short Notes)
Language-Integrated Query (LINQ) adds query capabilities to Visual Basic
and provides simple and powerful capabilities when you work with all kinds of
data. Rather than sending a query to a database to be processed, or working
with different query syntax for each type of data that you are searching, LINQ
introduces queries as part of the Visual Basic language. It uses a unified
syntax regardless of the type of data.
LINQ enables you to query data from a SQL Server database, XML, in-memory
arrays and collections, ADO.NET datasets, or any other remote or local data
source that supports LINQ. You can do all this with common Visual Basic
language elements. Because your queries are written in the Visual Basic
language, your query results are returned as strongly-typed objects. These
objects support IntelliSense, which enables you to write code faster and catch
errors in your queries at compile time instead of at run time. LINQ queries can
be used as the source of additional queries to refine results. They can also be
bound to controls so that users can easily view and modify your query results.
Labels: VB.Net
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home