LINQ Flashcards
1
Q
What does LINQ stand for?
A
Language Integrated Query
2
Q
What data source does LINQ enable us to query?
A
- Databases
- XML documents
- Objects in memory, etc.
3
Q
What is deferred execution?
A
The query executes only when you access the results, not when you define the query.