Reading-Notes

LINQ & Delegates

This topic is important to me because I want to be able to perform SQL like queries directly on collections like arrays, lists, and DB’s.

Retrospective 9

References

LINQ

Intro to LINQ Queries

Basic LINQ Query Operations

Walkthrough Writing LINQ Queries

LINQ

Introduction to LINQ Queries

All LINQ query operations consist of three distinct actions:

  1. Obtain the data source.

  2. Create the query.

  3. Execute the query.

LINQ Query Operations

LINQ (Language Integrated Query) is a feature in C# that enables data querying and manipulation within your code. LINQ supports query syntax and method syntax for defining queries.

1. Filtering

2. Projection

3. Ordering

4. Grouping

5. Aggregation

6. Joining

7. Set Operations

LINQ Query Operations provide a concise and readable way to perform complex data manipulations.

Things I want to know more about

I want to know more about when LINQ is used in bigger companies and how useful it is.

I want to learn more about using LINQ queries on my API call data.