top of page
Search
The Tech Platform
May 3, 2023
How to use Left Join in C# LINQ
A left join in C# LINQ is a type of join that returns each element of the first (left) data source, regardless of whether it has any...
The Tech Platform
May 2, 2023
How to Achieve Inner Join in C# LINQ
An inner join in C# LINQ is a query that produces a result set in which each element of the first collection appears one time for every...
The Tech Platform
May 1, 2023
How to Achieve Group By in C# LINQ
Group by in C# LINQ is a query that groups the elements of a sequence according to a specified key selector function. The key can be a...
The Tech Platform
May 1, 2023
How to use Right Join in C# LINQ
A right join in C# LINQ is a type of join that returns each element of the second (right) data source, even if it has no correlated...
The Tech Platform
Jul 18, 2022
Expression in LINQ - Expression<TDelegate>
The lambda Expression can be assigned to the Func or Action type delegates to process over in-memory collections. The .NET compiler...
The Tech Platform
Apr 11, 2022
LINQ to SQL in ASP.Net With CRUD Operations
Language-Integrated Query (LINQ) In Language-Integrated Query (LINQ) to SQL, the data model of a relational database is mapped to an...
The Tech Platform
Apr 4, 2022
8 Tips and Tricks for Writing the Best Queries in LINQ to Entities
LINQ is a powerful querying tool for .NET applications. There are certain techniques to follow when writing queries to make sure they run...
bottom of page