
Language Integrated Query (LINQ) - C# | Microsoft Learn
Dec 15, 2023 · Language-Integrated Query (LINQ) is the name for a set of technologies based on the integration of query capabilities directly into the C# language. Traditionally, queries against …
Introduction to LINQ Queries - C# | Microsoft Learn
Mar 24, 2025 · LINQ to Objects provides a great introduction to programming with LINQ. LINQ queries offer three main advantages over traditional foreach loops: They're more concise and …
LINQ overview - .NET | Microsoft Learn
Feb 4, 2022 · Language-Integrated Query (LINQ) provides language-level querying capabilities, and a higher-order function API to C# and Visual Basic, that enable you to write expressive …
Query expression basics (LINQ) - C# | Microsoft Learn
Jan 16, 2025 · This article introduces the basic concepts related to query expressions in C#. What is a query and what does it do? A query is a set of instructions that describes what data to …
Write LINQ queries - C# | Microsoft Learn
Most queries in the introductory Language Integrated Query (LINQ) documentation are written by using the LINQ declarative query syntax. The C# compiler translates query syntax into method …
Working with LINQ - C# | Microsoft Learn - learn.microsoft.com
Sep 15, 2021 · This tutorial teaches you features in .NET Core and the C# language. You’ll learn how to: Generate sequences with LINQ. Write methods that can be easily used in LINQ …
Standard Query Operators Overview - C# | Microsoft Learn
May 31, 2024 · The standard query operators are the keywords and methods that form the LINQ pattern. The C# language defines LINQ query keywords that you use for the most common …
The lambda operator - The `=>` operator is used to define a …
Feb 19, 2025 · The C# => operator defines lambda expressions and expression bodied members. Lambda expressions define a block of code used as data.
Enumerable.Where Method (System.Linq) | Microsoft Learn
In query expression syntax, a where (C#) or Where (Visual Basic) clause translates to an invocation of Where<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>). See also. …
Einführung in LINQ-Abfragen - C# | Microsoft Learn
In einer LINQ-Abfrage arbeiten Sie immer mit C#-Objekten. Sie verwenden dieselben grundlegenden Codierungsmuster für die Abfrage und Transformation von Daten in XML …