Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
C#

LINQ in C#

Query and transform sequences with Language Integrated Query.

LINQ in C# — a practical guide to C# LINQ with clear examples you can reuse in real projects.

C# Tutorial Series (79/121). Prefer one article? Read the complete C# tutorial.

Short description

LINQ works over IEnumerable in-memory and IQueryable providers (EF).

LINQ method syntax

var adults = people.Where(p => p.Age >= 18).Select(p => p.Name).ToList();

Leave a reply

Your email address will not be published. Required fields are marked *