© 2023 Hashnode
#linq
Introduction: Welcome to this Blog series on LINQ, where we'll introduce the basics of LINQ and its advantages over traditional programming methods. What is LINQ? LINQ stands for Language Integrated Query, which is a set of features that al…
Introduction LINQ (Language Integrated Query) is a powerful feature of C# that provides a simple and concise syntax to query data from various data sources, including objects, databases, XML files, an…
I know it has been about a long time but I've never really got my blogging game up and running so here is my first attempt at writing one. LINQ or Language Integrated Querying syntax in C# used for query objects and/or SQL databases. Useful…
LINQ is a powerful tool. To use it at its full potential, understanding how LINQ works under the hood is necessary. Introduction to LINQ LINQ stands for Language Integrated Query. LINQ enables the use…
LINQ (Language-Integrated Query), integrated means that it is a part of the language. It is available in the System.Linq namespace.Linq is a technology that aims to integrate queries into the C# progr…
It is difficult to say definitively which of these methods is faster, as the performance of different algorithms can vary depending on the specific input data and the implementation details. In genera…
Learning SQL is a pain. Using SQL is a pain. Be better. Choose .NET. Choose LINQPad. https://youtu.be/q0KhPdDE7Ek Early last year I was building out a database site for a game and decided it would be a good opportunity to start playing wit…
As I continued doing my migration process to convert my existing project from ASP.NET Web Form to ASP.NET MVC using Entity Framework from my previous post, I had abit of issue with SQL LEFT JOIN. Basi…
As I was doing a migration process to convert existing project from ASP.NET Web Form to ASP.NET MVC using Entity Framework, I came across a bunch of SQL statements. Yeah, I know, we should not have an…