l3 Introduction To Linq 0
l3 Introduction To Linq 0
Chapter 11
Introduction
• Large amounts of data are often stored in a database—an
organized collection of data.
• A database management system (DBMS) provides
mechanisms for storing, organizing, retrieving and
modifying data contained in the database.
• Today’s most popular database systems are relational
databases.
• A language called Structured Query Language (SQL) is an
international standard used with relational databases to
perform queries (that is, to request information that satisfies
given criteria) and to manipulate data.
◦ Example:
Dim names=
From Employee In employees
Select Employee.firstName, Employee.lastName
Creating Objects of Anonymous Types