Hamza EL YousfiforARTICLES BY HAMZAhamzaelyousfi.hashnode.net·Jan 1, 2023LINQ 101: A Beginner's Guide to Mastering Data Queries in .NETLINQ (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# programming language. Normally you have to learn a diff...Discuss·41 likes·758 readsSoftware development in C# & .NET.NET
Vineet Sharmaforvineett.hashnode.net·Apr 4, 2023Topic 1: Introduction to LINQIntroduction: 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 allow you to...Discuss·10 likesLINQ - A complete series on LINQC#
Nadeesh HirushanforNIBM Computing Societynibmcs.hashnode.net·Apr 4, 2023LINQ in C#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, and others. It was developed by a team of engineers ...Discuss·1 like·26 readsC#
Vineet Sharmaforvineett.hashnode.net·Apr 4, 2023Topic 1: Introduction to LINQIntroduction: 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 allow you to...Discuss·10 likesLINQ - A complete series on LINQC#
Nadeesh HirushanforNIBM Computing Societynibmcs.hashnode.net·Apr 4, 2023LINQ in C#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, and others. It was developed by a team of engineers ...Discuss·1 like·26 readsC#
Tony JoanesforTonys Engineering Blogtonyjoanes.hashnode.net·Jan 13, 2023Introducing LINQI 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 This is a...Discussprogramminglinq
Sami MejriforSimplified Software Engineeringsmejri.hashnode.net·Jan 12, 2023C# LINQ - Under the hoodLINQ 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 of SQL Query Like syntax on data collections in C...Discuss·185 readsC# .NetC#
Hamza EL YousfiforARTICLES BY HAMZAhamzaelyousfi.hashnode.net·Jan 1, 2023LINQ 101: A Beginner's Guide to Mastering Data Queries in .NETLINQ (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# programming language. Normally you have to learn a diff...Discuss·41 likes·758 readsSoftware development in C# & .NET.NET
Geilton XavierforGeilton Xavier's bloggeiltonxavier.hashnode.net·Dec 4, 2022Foreach vs LINQ vs HashSetIt 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 general, however, HashSet may be the fastest of these th...Discuss·419 readshashset
Shane DuffyforShane Duffycppshane.hashnode.net·Aug 14, 2022Forget SQL, All My Homies Use LINQLearning 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 with Entity F...Discuss·56 reads.NET
Han Chee TanforCode Cultivationcodecultivation.hashnode.net·Dec 10, 2017My journey of using Join, GroupJoin and GroupBy – Part 2As 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. Basically, the SQL keywords return all records from le...Discuss·75 readsC
Han Chee TanforCode Cultivationcodecultivation.hashnode.net·Dec 9, 2017My journey of using Join, GroupJoin and GroupBy – Part 1As 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 any SQL statements in C# codes. Thus, while I was go...Discuss·65 readsC