The Tech PlatformMay 3, 2023C#How to use Left Join in C# LINQA 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 PlatformMay 2, 2023C#How to Achieve Inner Join in C# LINQAn 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 PlatformMay 1, 2023C#How to Achieve Group By in C# LINQGroup 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 PlatformMay 1, 2023C#How to use Right Join in C# LINQA 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 PlatformJul 18, 2022C#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 PlatformApr 11, 2022SQLLINQ to SQL in ASP.Net With CRUD OperationsLanguage-Integrated Query (LINQ) In Language-Integrated Query (LINQ) to SQL, the data model of a relational database is mapped to an...
The Tech PlatformApr 4, 2022SQL8 Tips and Tricks for Writing the Best Queries in LINQ to EntitiesLINQ is a powerful querying tool for .NET applications. There are certain techniques to follow when writing queries to make sure they run...