Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
C# LINQ Basics: Learn LINQ essentials in C# .NET
Rating: 3.8 out of 5(115 ratings)
4,010 students

C# LINQ Basics: Learn LINQ essentials in C# .NET

Basics of the embedded LINQ language
Last updated 2/2021
English
English [Auto],

What you'll learn

  • C# LINQ Basics

Course content

1 section9 lectures1h 5m total length
  • Introduction1:31

    In this video course, I will tell you about the basics of embedded LINQ language

  • How LINQ works7:58

    In this lesson I would tell you how linq works

  • Sorting in LINQ10:29

    I would show you a one simple LINQ's operation. It named as sorting.

  • Filtering in LINQ7:42

    Learn to filter a list of people in LINQ by condition using the extension method, selecting those with age 25. Practice building simple queries to retrieve matching records.

  • Union, Intersection and Difference of Collections in LINQ5:21

    I would show you Union, Intersection and Difference of Collections in LINQ

  • Skip and Take Methods in LINQ6:46

    I would show you Skip and Take Methods in LINQ

  • Grouping in LINQ10:59

    I would show you Grouping in LINQ

  • Join method in LINQ13:48

    Explore the join method in LINQ to combine two sequences on a key and project results into an anonymous type with three properties in C# and .NET.

  • Conclusion0:43

Requirements

  • C# basic
  • Object oriented programming
  • SQL basic

Description

In this video course, I will tell you about the basics of embedded LINQ language. It make easier for you to work with the C# language. Instead of having to deal with an entirely new set of tools in the form of classes, you can use all the same familiar collections and arrays with existing classes. This means that you can take full advantage of LINQ queries with minimal or no modifications to existing code. LINQ is Language-Integrated Query. The data source can be an object (implements the IEnuberable interface, which are standard collections, arrays), an XML document, and a DBSet data set.However, regardless of the data source, LINQ implements the same approach for fetching from that data. In addition, there are many varieties of LINQ:

LINQ to Objects: Used to work with arrays and collections

LINQ to Entities: Used when accessing databases through Entity Framework technology

LINQ to SQL: Data Access Technology in MS SQL Server

LINQ to XML: Used when working with XML files

LINQ to DataSet: Used when working with a DataSet object

Parallel LINQ (PLINQ): Used to execute parallel queries

In this videos, I want to talk first of all about the first LINQ language varieties.

This course contains videos:

  • Introduction

  • How LINQ works

  • Sorting in LINQ

  • Filtering in LINQ

  • Union, Intersection and Difference of Collections in LINQ

  • Skip and Take Methods in LINQ

  • Grouping in LINQ

  • Join method in LINQ

  • Conclusion


Who this course is for:

  • entry level C# software developers