Querying Data with LINQ
Learn how to query data using LINQ in EF Core.
Introduction to LINQ
EF Core uses Language Integrated Query (LINQ) to query data from data stores. As long as the data store has a LINQ provider, LINQ
can query data from multiple data stores.
Queries are expressions that retrieve data from data sources. Traditionally, we express queries in a specialized query language such as SQL or XQuery, and developers must learn the query language ...
Get hands-on with 1400+ tech skills courses.