About 2,030 results
Open links in new tab
  1. Write LINQ queries - C# | Microsoft Learn

    Dec 1, 2025 · Most queries in the introductory Language Integrated Query (LINQ) documentation use the LINQ declarative query syntax. The C# compiler translates query syntax into method calls. These …

  2. Introduction to LINQ Queries - C# | Microsoft Learn

    Mar 24, 2025 · LINQ offers a consistent model for queries on data across various kinds of data sources and formats. In a LINQ query, you're always working with objects.

  3. LINQ Query Syntax - TutorialsTeacher.com

    The LINQ query syntax starts with from keyword and ends with select keyword. The following is a sample LINQ query that returns a collection of strings which contains a word "Tutorials".

  4. LINQ Query Syntax - GeeksforGeeks

    Sep 12, 2025 · LINQ (Language Integrated Query) provides two ways to write queries in C# Query Syntax (Query Expression Syntax) Method Syntax (Fluent Syntax) Query Syntax LINQ Query …

  5. LINQ Query and LINQ Method Syntax in C# - Dot Net Tutorials

    In this article, I am going to discuss the Different Ways to write LINQ Query i.e. Linq Query Syntax and Linq Method Syntax with Examples.

  6. docs/docs/csharp/linq/get-started/write-linq-queries.md at main ...

    Dec 1, 2025 · Write C# LINQ queries to query data Most queries in the introductory Language Integrated Query (LINQ) documentation use the LINQ declarative query syntax. The C# compiler translates …

  7. C# LINQ Tutorial

    Learn the LINQ basics and how to construct LINQ queries. Explore LINQ to Objects that help you query in-memory data structures such as arrays and lists. Dive into advanced LINQ topics such as parallel …

  8. LINQ (Language Integrated Query) - GeeksforGeeks

    Apr 20, 2026 · LINQ (Language Integrated Query) is a feature in C# that provides a way to query and manipulate data from different sources such as collections, databases, XML or objects. It integrates …

  9. Mastering LINQ in C# - C# Corner

    Introduction Language Integrated Query (LINQ) is a game-changer in C#. It brings SQL-like data querying capabilities directly into your C# code, making data manipulation more intuitive, type-safe, …

  10. How To Use LINQ in C# – With Code Examples - freeCodeCamp.org

    Jul 15, 2024 · By combining and chaining LINQ methods, you can create complex, readable queries efficiently. LINQ is a versatile tool that enhances your ability to handle data in .NET applications. …