Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
C# LINQ Guide
Rating: 4.9 out of 5(4 ratings)
330 students

C# LINQ Guide

Learn Querying with LINQ, C#.
Created byVinay Kumar
Last updated 5/2023
English
English [Auto],

What you'll learn

  • Querying with LINQ
  • Sorting, Filtering, Grouping using LINQ
  • Projection, Partitioning, Aggregation and much more using LINQ
  • Few use cases of LINQ

Course content

3 sections19 lectures1h 13m total length
  • Introduction0:45

    Explore language integrated query (LINQ) in C# and its ability to perform sorting, set operations, filtering, quantifier operations, projection, partitioning, joining, grouping, and aggregation.

  • Introduction to LINQ5:33

    Learn how LINQ queries retrieve data from a source, create and execute a query, and understand deferred execution through a simple C# example that returns even numbers.

Requirements

  • C#

Description

(LINQ) or Language-Integrated Query  is the name for a set of technologies based on the integration of query capabilities directly into the C# language.


In this tutorial, we will learn how top perform operations such as


Sorting


Set Operations


Filtering Operation


Quantifier Operations


Projection Operation


Partitioning the data


Joining the objects


Grouping the data


Generation operations


Element Operations


Concatenation of data/objects


Aggregation functions


And Few use cases of LINQ such as finding largest file from a folder, finding specific files and much more.


Different languages have been developed over time to access data from various sources.

For example, to access data from sql server, we have SQL also called as Structured Query Language.

Similarly, to access data from XML, we have something called Xquery.


A query is an expression that retrieves  data from a data source.


Different languages have been developed over time to access data from various sources.

For example, to access data from sql server, we have SQL also called as Structured Query Language.

Similarly, to access data from XML, we have something called Xquery.


All LINQ query operations consist of three distinct actions:

1 Obtaining the data from source.

2 Creation the query.

3 Execution the query.


Who this course is for:

  • Beginner C# and .NET Developers