Concept Flow - LINQ query syntax
Start with data source
Write query expression
Use from, where, select clauses
Query is not executed yet
Execute query by foreach or ToList()
Get filtered and projected results
LINQ query syntax starts with a data source, then you write a query using from, where, and select clauses. The query runs when you iterate or convert it.