Related resources for INQ
  • Creating a CQRS Architecture in .NET Core 811/4/2024 7:29:08 AM. This guide outlines a practical implementation of the CQRS (Command Query Responsibility Segregation) architecture using C# and MediatR, emphasizing the separation of read and write operations for bet
  • How Select and SelectMany Works in C#10/26/2024 5:05:45 AM. Learn key differences, practical use cases, and examples that demonstrate how these methods simplify data manipulation, making it easier to work with nested and complex data structures in C#.
  • How Func Delegates Work in LINQ9/27/2024 4:31:27 AM. In this article, we explore how Func delegates operate within LINQ (Language Integrated Query) in C#. Func delegates enable concise and powerful data manipulation by allowing developers to pass method
  • Solid Introduction to Expression Trees in C#9/26/2024 4:50:55 AM. This article provides a comprehensive introduction to Expression Trees in C#. You'll learn about their structure, how they represent code as data, and their applications in LINQ queries.
  • Exploring the Performance Boosts in .NET 99/20/2024 4:22:58 AM. .NET 9 introduces key performance improvements, including Native AOT for faster startup times and reduced memory usage, optimized garbage collection, enhanced threading for multicore systems, and HTTP
  • POCO to Dictionary Conversion Techniques in C#9/16/2024 5:02:08 AM. This article explores five methods for converting a C# POCO to a dictionary using reflection, LINQ, JSON libraries, and ExpandoObject, comparing their performance through Benchmark.NET to find the bes
  • Using JQuery GridView For an ASP.NET MVC Application9/5/2024 9:28:18 AM. Learn how to create a GridView in ASP.NET MVC using jQuery plugins. This guide covers creating static and dynamic GridViews, populating data from a database, and implementing features like paging and
  • Dynamic LINQ with Gridify in .NET8/30/2024 6:07:05 AM. Learn how to leverage Gridify to simplify complex filtering, sorting, and pagination tasks. Perfect for developers seeking to optimize and extend their use of LINQ in C# applications.
  • Crafting Efficient and Maintainable C# Code8/29/2024 4:49:20 AM. This guide explores essential C# best practices for robust, maintainable code. It covers using meaningful variable names, following naming conventions, handling null values, and using var judiciously.
  • Learn About .NET 9 LINQ Enhancements8/5/2024 4:16:18 AM. In .NET 9, two new LINQ methods enhance code simplicity and readability: .CountBy and .AggregateBy. .CountBy counts elements by key, simplifying grouping and counting tasks. .AggregateBy streamlines a
  • LINQ Best Practices8/1/2024 6:25:23 AM. Discover essential LINQ best practices for writing efficient, readable, and maintainable code in C#. Learn tips on query and method syntax, performance optimization, and effective use of lambda expres
  • Programming in Practice - LINQ to SQL - Explained7/29/2024 6:31:06 AM. Discover the power of LINQ to SQL in this comprehensive guide. Learn how to seamlessly integrate LINQ queries with SQL databases using the .NET framework. From setting up your environment to executing
  • Understanding of LINQ7/28/2024 9:07:46 AM. LINQ (Language Integrated Query) is a powerful feature in .NET that allows developers to write SQL-like queries directly in C# or VB.NET. It supports querying collections, XML, databases, and more, us
  • Lazy Loading (4): EntityFramework7/24/2024 4:50:05 PM. This article will discuss lazy loading in Entity Framework. This article series explores Lazy Loading, focusing on its application in various technologies like LINQ, HTML, JavaScript, Entity Framework
  • LINQ to ADO.NET: Enhancing Data Access with Modern Querying7/23/2024 3:46:30 AM. In the evolving world of .NET, querying databases has traditionally been done using ADO.NET, which provides a robust set of classes for data access. However, the introduction of Language Integrated Qu
  • Optimizing LINQ Performance with Compiled Queries in .NET7/22/2024 6:16:04 AM. Compiled queries in LINQ (Language Integrated Query) are a powerful feature that can significantly improve the performance of your data access code, especially when dealing with repetitive queries.
  • Practical approach to EF Core with Scalar functions7/21/2024 6:32:25 PM. Learn how to implement and migrate scalar SQL functions in an ASP.NET Core application using Entity Framework Core. This guide covers creating a scalar function to calculate total unit prices, integra
  • Discard Variable in C# .NET7/17/2024 12:17:22 PM. The discard variable (_), introduced in C# 7.0, allows developers to ignore values intentionally. It enhances code clarity by signaling unused data in tuples, pattern matching, out parameters, and LIN
  • Differences Between IEnumerable and IQueryable in C#7/17/2024 6:55:58 AM. Explore the nuances between IEnumerable and IQueryable in C#. Understand how these interfaces differ in data retrieval and manipulation, with a focus on performance implications and suitable use cases
  • Using Find Instead of FirstOrDefault with Collections in C# .NET7/15/2024 8:10:04 AM. When working with collections in C# .NET, FirstOrDefault and Find serve similar purposes of retrieving elements based on conditions. FirstOrDefault is versatile for any IEnumerable<T>, while Fin
  • Understanding LINQ While Writing Your Own7/3/2024 8:46:22 AM. LINQ (Language-Integrated Query) in .NET offers a unified, declarative way to query diverse data sources like objects, databases, XML, and more. It simplifies data manipulation with methods like Where
  • Mastering LINQ: TakeWhile and SkipWhile in C# .NET7/1/2024 7:03:12 AM. Explore LINQ's TakeWhile and SkipWhile methods in C#, which enhance data querying by conditionally including or excluding elements based on predicates. Learn how to use these powerful methods to p
  • Optimizing LINQ Queries in C# and .NET Core Web APIs6/21/2024 7:21:52 AM. LINQ in C# optimizes data querying with readable syntax, but inefficient use can impact .NET Core Web API performance. Strategies like early filtering and selective projections enhance efficiency. Def
  • Dynamic LINQ Query In C# Using Predicate Builder6/20/2024 11:42:33 AM. This technique allows runtime composition of query predicates using logical conditions such as AND, OR, and NOT. By leveraging Expression Trees and lambda expressions, developers can programmatically
  • Server-Side Processing With Custom Range Filtering Using MVC And Entity Framework6/20/2024 10:11:36 AM. Learn server-side processing in jQuery DataTables for ASP.NET MVC with custom range filtering using C# LINQ. Utilize AJAX for data retrieval, Bootstrap for UI, and DataTable's powerful features li
  • LINQ vs PLINQ Method Syntax for Efficient C# .NET Data Processing6/17/2024 5:09:08 AM. LINQ (Language Integrated Query) and PLINQ (Parallel LINQ) are .NET frameworks for querying data. LINQ offers a declarative syntax for querying various data sources with single-threaded execution, whi
  • How To Use LINQ To SQL For Retrieving Data From SQL Server Database6/14/2024 10:42:01 AM. This article explores LINQ to SQL, an ORM framework in .NET for mapping database tables to .NET classes. It covers querying operations like Select, Insert, Update, and Delete using LINQ syntax, which
  • Revolutionize Your Business with Chatbot-Enabled Digital Transformation6/13/2024 10:20:23 AM. Organizations face numerous daily inquiries about digital transformation. Chatbots, like virtual assistants, manage repetitive queries, offering 24/7 support, and personalized customer experiences. Th
  • C# Comparison Fundamentals: Best Practices and Tips6/11/2024 4:25:21 AM. Comparison operations are a fundamental aspect of programming in C#. Whether you're comparing primitive types, strings, or objects, or handling null values, understanding the nuances of comparison
  • Understanding Single, SingleOrDefault, First, and FirstOrDefault in LINQ .NET C#6/7/2024 5:30:25 AM. LINQ (Language Integrated Query) provides powerful querying capabilities in C# to manipulate data collections. Among its arsenal of operators, Single, SingleOrDefault, First, and FirstOrDefault are fr
  • IQueryable vs IEnumerable 6/6/2024 7:48:45 AM. IQueryable vs IEnumerable" explores the differences between these two interfaces in C#. IQueryable is suitable for building dynamic queries against a database, allowing deferred execution and opt
  • Optimizing LINQ Queries In C#.NET For MS SQL Server 6/5/2024 8:12:13 AM. Learn how to optimize LINQ queries for SQL Server performance using Entity Framework. Understand the importance of generating efficient SQL queries and avoid common pitfalls. Explore techniques like
  • Linq To Excel In Action6/5/2024 5:34:51 AM. Explore using LinqToExcel library in C# to query data from Excel spreadsheets effortlessly. Learn step-by-step creation of a console application, installation of LinqToExcel packages, and querying Exc
  • Read XML in C#5/31/2024 10:03:18 AM. Learn to parse and manipulate XML data in C# effortlessly. Utilize XML readers, XPath, or LINQ to XML for efficient XML processing. Handle XML documents, elements, attributes, and namespaces seamlessl
  • Inserting Data in the Database Using LINQ to SQL5/30/2024 10:28:32 AM. Using LINQ to SQL, insert data into databases effortlessly. Utilize LINQ query expressions, entity classes, and DataContext to map objects to database tables. Ensure proper error handling and concurre
  • Lazy Loading (2): HTML5/29/2024 5:30:01 AM. This series explores Lazy Loading within the LINQ category, focusing on dynamically loading images in HTML to enhance page load times, featuring code examples and demos for practical application.
  • LINQ Query Syntax vs Method Syntax in Entity Framework5/29/2024 4:39:33 AM. Choosing between LINQ Query Syntax and Method Syntax in Entity Framework depends on various factors. Query Syntax often resembles SQL, making it more intuitive for those with SQL background, while Met
  • Multiple OrderBy Operations in Entity Framework5/27/2024 5:54:42 AM. Entity Framework (EF) is a powerful ORM (Object-Relational Mapper) in .NET that allows developers to work with databases using .NET objects. In EF, this can be achieved using OrderBy, ThenBy, OrderByD
  • Data Pagination with Extension Methods in C#5/20/2024 6:00:02 AM. Pagination is a common technique used to manage and display data in chunks. This article discusses implementing pagination in C# using extension methods, which allow adding new functionality to existi
  • Programming in Practice - Structural Data5/19/2024 6:40:42 AM. In object-oriented programming, the basic way to create structural data is to define custom types and interconnect them using references. Let's analyze this case using sample code in the context o
  • Create A Contact Us Form For Your Website5/17/2024 10:35:44 AM. Create a user-friendly Contact Us form for your website with essential fields like Name, Email, and Message. Implement spam protection, validation, and a responsive design for seamless interaction.
  • Get Comma Separated Values From SQL Server Using Entity Framework (EF)5/17/2024 10:20:28 AM. Learn how to retrieve data from SQL Server using Entity Framework (EF) in C#. This tutorial covers querying with LINQ, transforming results into comma-separated values (CSV), and leveraging EF's d
  • Unlocking Performance: Exploring PLINQ in .NET C#5/8/2024 8:40:53 AM. In today's computing landscape, where multi-core processors are ubiquitous, optimizing the performance of your applications often involves leveraging parallelism. One powerful tool in the .NET dev
  • Simple Insert And Select (CRUD) Operation Using .NET Core MVC With ADO.NET And Entity Framework Core5/7/2024 10:33:55 AM. Learn to perform basic CRUD operations in .NET Core MVC using both ADO.NET and Entity Framework Core. Build a robust data access layer for seamless integration with your web application.
  • Programming in Practice - LINQ Expression 5/6/2024 9:05:50 AM. An impression can be made that: data is data, and it doesn't matter where it comes from provided it is reliable. The LINQ technology is presented to fetch the necessary data from any available so
  • Database Connectivity in Visual Studio 5/3/2024 9:16:16 AM. Visual Studio facilitates robust database connectivity through technologies like ADO.NET and Entity Framework. Developers can seamlessly integrate with SQL Server, MySQL, Oracle, and more using connec
  • Join Two DataTables Using LINQ In ASP.Net C#4/30/2024 9:49:01 AM. Learn how to join two DataTables in ASP.NET C# using LINQ for efficient data integration. Explore techniques to merge and query DataTables, leveraging LINQ's powerful capabilities for seamless dat
  • Single, SingleOrDefault, First, and FirstOrDefault in Linq .NET C#4/30/2024 9:02:07 AM. LINQ's element operators like Single, SingleOrDefault, First, FirstOrDefault, Last, and LastOrDefault provide specific functionalities for retrieving elements from collections in C#. Here's ho
  • Entity Framework Core: Features, Real-time Implementation, Best Practices4/29/2024 10:27:09 AM. Entity Framework Core (EF Core) stands as a powerful toolset for .NET developers, streamlining the interaction between applications and databases through object-relational mapping (ORM). Whether adopt
  • Explain Lambda Functions in .NET C#4/26/2024 5:02:47 AM. In the realm of .NET programming, lambda functions represent a powerful and concise way to define anonymous methods or functions. In this article, we'll explore the fundamentals of lambda function
  • C# Programming: Language Fundamentals, OOP, Async, LINQ4/25/2024 8:39:35 AM. This guide provides a thorough exploration of the C# language, covering essential topics such as language fundamentals, object-oriented programming concepts, asynchronous programming, and Language Int
  • LINQ in C#: Knowing When to Use First() vs FirstOrDefault()4/24/2024 1:08:57 PM. LINQ, a cornerstone of C#, empowers developers to query data across various sources efficiently. This guide delves into the nuanced differences between First() and FirstOrDefault(), aiding in crafting
  • How To Convert List <DataTable> Into DataSet4/23/2024 11:15:59 AM. Retrieve employee details from database using stored procedure. Group data by department with LINQ. Export List&lt;DataTable&gt; to Excel with multiple spreadsheets. Bind List&lt;DataTable&gt; to Gri
  • Filterable DataGridView using Linq and reflections4/19/2024 10:29:32 AM. Create a dynamic DataGridView in C# with filter capabilities using Linq and reflection. Manipulate data efficiently, enhance user experience, and utilize object-oriented programming for flexible data
  • C# Corner Delhi Chapter Meet, June-22, 2013 Official Recap4/19/2024 10:28:10 AM. Recap of the C# Corner Delhi Chapter Meet held on June 22, 2013, featuring sponsors, enthusiastic attendees, agenda with sessions on LINQ, ASP.Net MVC, and Web API by notable speakers Dhananjay Kumar,
  • Select Data Using Complied Query4/18/2024 11:13:18 AM. Learn how to optimize data retrieval in your application by utilizing compiled queries. This technique, often employed in Entity Framework and LINQ, enhances performance by pre-compiling queries, resu
  • Select Data With Enums Via EDF Framework 5.04/18/2024 8:46:39 AM. Utilize Entity Framework 5.0 to select data with enums. Employ LINQ queries for efficient data retrieval, leveraging strong-typed enums for enhanced code readability and database querying.
  • New LINQ Methods in .NET 9 Preview4/14/2024 3:56:25 AM. While the release of .NET 9 is planned for November 2024, the preview version is already available. One of the new .NET 9 features is the new LINQ methods: CountBy, AggregateBy, and Index. In this art
  • Functional programming in C# - Introduction4/2/2024 8:55:30 AM. Lets learn the concept of functional programming, its usage and why functional programming is important
  • What is Language Integrated Query in C#?3/29/2024 9:08:50 AM. Know about LINQ (Language Integrated Query) in C# and their benefits. In this article, we have explained LINQ with an example.
  • Exploring .NET 6's MinBy() and MaxBy() Extension Methods3/22/2024 10:39:05 AM. In this article, I will demonstrate the exciting new additions to LINQ extension methods introduced in.NET 6: MinBy() and MaxBy(). Let&#39;s explore how these powerful methods simplify code, providing
  • Leveraging Compiled Queries for Enhanced Performance in LINQ3/9/2024 9:17:22 AM. Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution pl
  • Misconceptions About the Four LINQ methods3/9/2024 5:22:36 AM. Misconceptions about the four LINQ methods. Single(), SingleOrDefault(), First(), and FirstOrDefault(). This article addresses misconceptions surrounding four LINQ methods—Single(), SingleOrDefault()
  • New Features Of Entity Framework Core 2.03/7/2024 8:53:53 AM. Entity Framework Core is a lightweight and extensible version of Entity Framework. It is based on an ORM (Object-Relational Mapper) which enables us to work with databases using .NET objects. This art
  • What is New in .NET 93/4/2024 8:06:59 AM. .NET 9, succeeding .NET 8, places particular emphasis on cloud-native applications and enhancing performance. It will receive standard-term support (STS) for 18 months.
  • Why we should learn C#?2/26/2024 6:11:34 AM. This article explores the reasons behind choosing C# over other languages, delving into its evolution, key features like object orientation, lambda expressions, LINQ, generics, and its adaptability fo
  • Sorting Arrays in C#11/24/2023 4:54:52 AM. This article guides us through sorting arrays in C# using the Array.Sort() method and LINQ queries. It covers both ascending and descending orders, providing code snippets for clarity.
  • SQL Join in LINQ (LINQ to Entity / LINQ to SQL)11/15/2023 8:29:07 AM. This article explains various types of joins in LINQ query. Learn Inner join, Outer Join, Left Outer join, Right Outer join, Full outer join, Cross Join, Group Join in LINQ query.
  • Difference Between Concurrency and Parallelism in C#11/9/2023 5:31:39 AM. The article you provided gives a comprehensive overview of the concepts of concurrency and parallelism and their relevance in C# programming. It highlights the distinctions between the two concepts an
  • How to Convert an Array to a List in C#?10/10/2023 10:43:06 AM. Converting an array to a list in C# involves transforming the data structure from an array, which has a fixed size, into a list, which can dynamically adjust its size. This process is essential when f
  • Increase Performance Of LINQ By Parallelism10/5/2023 7:31:33 AM. Parallelism solves many problems in the computing world if done in the right way; parallelism is not good if the task is small and needs synchronization of resources, such a scenario would hurt perfor
  • Understanding LINQ in C#: Query Syntax and Method Syntax10/3/2023 8:28:47 AM. This article is an informative and in-depth exploration of LINQ (Language Integrated Query) within the context of C#, a widely used programming language in the software development industry. The guide
  • Calculate The SUM Of The DataTable Column In C#9/18/2023 10:39:52 AM. In this article, I am going to explain how to calculate the sum of the DataTable column in ASP.NET using C#. Here, I&#39;ll also explain what a DataTable is in C#, as well as different kinds of ways t
  • Understanding LINQ in .NET9/11/2023 6:22:41 AM. LINQ, or Language Integrated Query, is a powerful feature in the .NET framework that simplifies data querying and manipulation in C# and VB.NET applications. It provides a uniform and SQL-like syntax
  • Beginners Guide For Expression Trees In C# - Understanding Expressions9/8/2023 9:24:49 AM. In this article you will get a beginners guide for Expression Trees in C#.
  • Easy LINQ To SQL Based Master-Detail Editor C#9/6/2023 10:43:30 AM. This article describes a simple approach to creating a LINQ to SQL based master-detail view with the ability to save changes made to the data. With practically no coding involved, the application belo
  • Functional Programming in C#: Currying9/6/2023 9:34:01 AM. Currying is a way to re-write a function with multiple arguments in such a way as it can be called as a chain of functions each with a single argument. This article covers using a few simple utility m
  • Understanding Projections In LINQ With Select & SelectMany Enumerable Methods8/23/2023 9:11:12 AM. In this article I will try to explain how to use projections in LINQ with a collection of objects.
  • Exploring the Diverse Flavors of LINQ with Examples8/22/2023 11:52:01 AM. LINQ is a powerful feature in modern programming languages like C# that allows developers to perform queries on different types of data sources using a consistent syntax. With LINQ, you can query and
  • Using the OrderBy and OrderByDescending Operator in LINQ8/8/2023 11:08:55 AM. Using the OrderBy and OrderByDescending Operator in LINQ: Sorting Collections
  • Evolution Of Microsoft Data Access Technologies8/8/2023 8:29:04 AM. This article beams on how Microsoft data access technologies evolved over the period of time.
  • What are Functional Requirements? 7/31/2023 5:52:22 AM. Functional Requirements of the system are a very critical part of the system in which we defined the overall functionality of the system. Functional Requirements define the behavior of the system mean
  • Learning LINQ Made Easy (LINQ to SQL)7/28/2023 8:57:30 AM. This article will cover LINQ to SQL basics for beginners to understand the framework and the underlying workings of the LINQ to SQL.
  • Learning LINQ Made Easy7/28/2023 8:48:25 AM. In this article, you will learn about LINQ. Language Integrated Query (LINQ) provides a way to query any type of data source. LINQ simplifies this situation by offering a consistent model for working
  • Learning LINQ Made Easy (LINQ to XML)7/28/2023 8:41:20 AM. This article is the next article in LINQ learning tutorials which will cover LINQ to XML basics.
  • Learn About Programming Logic And LINQ7/25/2023 4:07:24 PM. In this article, you will learn about the basics of programming logic.
  • Element Operators In LINQ7/18/2023 11:31:40 AM. Here, we will learn about Element Operators, their uses, and various element operators.
  • LINQ For Beginners7/13/2023 6:58:41 AM. LINQ stands for Language Integrated Query. In this article, we will dive deep into the basics of LINQ.
  • LINQ In C#7/13/2023 6:40:43 AM. LINQ stands for Language Integrated Query. LINQ is a data querying API that provides querying capabilities to .NET languages with a syntax similar to a SQL. LINQ queries use C# collections to return d
  • Using LINQ with C#7/13/2023 6:40:05 AM. LINQ introduces a standard, unified, easy-to-learn approach for querying and modifying data. In this article, you&#39;ll learn basics of LINQ and how to use LINQ in C#.
  • EF Core in .NET 7 API7/13/2023 5:57:14 AM. Using EF Core in .NET 7 API
  • C# LINQ With Select and SelectMany Operator7/10/2023 4:32:21 AM. C# LINQ with select and select many operator
  • LINQ Methods6/16/2023 6:47:15 AM. Linq Methods
  • Anonymous Types In C#6/13/2023 9:19:31 AM. Anonymous types allow us to create new types without defining them. In this article, you&#39;ll learn how to use Anonymous Types in C#.
  • Difference between IQueryable, IEnumerable, IList and List6/13/2023 4:40:52 AM. when to use what IQueryable, IEnumerable, IList and List
  • Convert DataTable to List In C#6/6/2023 9:00:47 AM. This article shows 3 ways to convert a DataTable to a List in C#.
  • Use LINQ To SQL On Web Form6/1/2023 11:02:07 AM. In this article I will explain how to use LINQ TO SQL on web form.
  • LINQ (Language Integrated Query) 1/31/2023 6:10:55 AM. In this article, you will learn about LINQ (Language Integrated Query).
  • Cascading Deletes in LINQ to SQL1/10/2023 6:16:15 AM. This article will discuss alternative methods for performing cascading deletes using LINQ to SQL. Cascading delete refers to the action of removing records associated by a foreign key relationship to
  • Find Blank Column Using LINQ In UiPath 1/3/2023 9:24:56 AM. In this article, you will learn how to find blank column Using LINQ in UiPath.