About 755,000 results
Open links in new tab
  1. Querying Data - EF Core | Microsoft Learn

    Mar 11, 2021 · Entity Framework Core uses Language-Integrated Query (LINQ) to query data from the database. LINQ allows you to use C# (or your .NET language of choice) to write …

  2. LINQ-to-Entities Queries in Entity Framework

    Here, you will learn how to write LINQ-to-Entities queries and get the result in Entity Framework 6.x as well as in Entity Framework Core. Visit LINQ Tutorials to learn LINQ step by step.

  3. Entity Framework LINQ Queries - Learn the Basics About Querying

    Jun 18, 2025 · Unlock the power of Entity Framework by learning how to make LINQ queries to your database.

  4. How to Use LINQ with Entity Framework for Optimized Queries

    Dec 9, 2024 · However, writing LINQ queries efficiently is crucial to avoid performance bottlenecks. In this article, we’ll explore how to use LINQ with Entity Framework to perform …

  5. EF Core LINQ for Beginners: Practical Query Patterns

    Aug 11, 2025 · Learn EF Core LINQ the right way: filtering, projection, paging, includes, joins, and performance tips with clear C# examples.

  6. LINQ to Entities in Entity Framework Core - Dot Net Tutorials

    LINQ-to-Entities is a subset of LINQ (Language Integrated Query) that works with Entity Framework Core to query and interact with database data. It allows developers to write …

  7. EF Core Query - Learn the Basics about Querying a Database in LINQ

    Jun 22, 2025 · LINQ allows you to use C# (or your .NET language of choice) to write strongly typed queries based on your derived context and entity classes. Querying in Entity Framework …

  8. LINQ In Entity Framework Core. | AlgoLesson

    Jul 12, 2025 · One of EF Core’s most important and powerful features is LINQ (Language Integrated Query) — a feature that allows you to write queries directly in C# using intuitive …

  9. Querying in Entity Framework Core

    Querying in Entity Framework Core remains the same as in EF 6.x, with more optimized SQL queries and the ability to include C#/VB.NET functions into LINQ-to-Entities queries. Visit the …

  10. EFCore Tutorial P6: LINQ Queries - DEV Community

    Sep 16, 2024 · In this tutorial, we extend the previous product and inventory management system by introducing order management. We will explore how to work with LINQ (Language …