This document provides an overview of querying data with Entity Framework Core. It discusses: - The basic components of a LINQ query in EF Core, including obtaining the data source, creating the query, and executing it. - Different types of queries like tracking vs non-tracking queries, and ways to include related data like eager loading, explicit loading, and lazy loading. - Additional topics covered include client vs server evaluation, raw SQL queries, and how EF Core handles querying and related data. The document serves as training material, outlining key concepts of querying and related data retrieval using EF Core. It provides examples and explanations of common query patterns and capabilities.