TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Content
People
Search
Any Word
Exact Word
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Akshay Phadke(9)
Vijay Prativadi(8)
Sandeep Singh Shekhawat(6)
Atul Rawat(4)
Muhammad Aqib Shehzad(3)
Manoj Kalla(3)
Abhishek Kumar(3)
Jitendra Mesavaniya(2)
Mariusz Postol(2)
Adalat Khan(2)
Rupesh Kahane(2)
Akhil Mittal(2)
Sandeep Kumar(2)
Rakesh (2)
Madhuri Mishra(2)
Harpreet Singh(2)
Vithal Wadje(2)
Praveen Raveendran Pillai(1)
Ajay Kumar(1)
Jay Krishnareddy(1)
Rasul Huseynov(1)
Muhammad Talha(1)
Ashutosh Singh(1)
Jaimin Shethiya(1)
Vishal Yelve(1)
Jobin S(1)
Ramawatar Bhakar(1)
Raj Bhatt(1)
Ajay Singh(1)
Fuad Hasan(1)
Sanjay Mrinal Kumar Kodangi(1)
Sumit Singh Sisodia(1)
Munib Butt(1)
Evgeniy Gribkov(1)
Miguel Teheran(1)
Rafnas T P(1)
Mushtaq M A(1)
Mukesh Kumar(1)
Farhan Ahmed(1)
Juan Francisco Morales Larios(1)
Priti Kumari(1)
Amit Choudhary(1)
Kundan Jha(1)
Shridhar Sharma(1)
Surya Pratap Singh(1)
Mahesh Chand(1)
Ano Mepani(1)
Rahul Singh(1)
Devesh Omar(1)
Jignesh Trivedi(1)
Hussain Ahmed(1)
Mukesh Kumar Tiwari(1)
Ehtesham Mehmood(1)
Priti Kumari(1)
Milstein Munakami(1)
Prashant Nimbare(1)
Vidya Vrat Agarwal(1)
Sourav Kayal(1)
Shankar M(1)
Kalyan Vedantam(1)
Scott Lysle(1)
Latest First
Oldest First
Most Viewed
Sort By
Search Results
No search result found
.NET 9 CountBy: A New LINQ Powerhouse
Nov 20, 2024.
.NET 9 introduces the CountBy method, a powerful addition to LINQ that enhances querying capabilities. This feature allows developers to count elements based on specified conditions efficiently.
Dynamic LINQ with Gridify in .NET
Aug 30, 2024.
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.
Learn About .NET 9 LINQ Enhancements
Aug 05, 2024.
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 aggregation operations, reducing complexity.
Optimizing LINQ Performance with Compiled Queries in .NET
Jul 22, 2024.
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.
Programming in Practice - LINQ to SQL - Explained
Jul 18, 2024.
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 complex queries, this tutorial covers it all.
Understanding LINQ While Writing Your Own
Jul 03, 2024.
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, Select, and GroupBy, supporting both query and method syntax.
Optimizing LINQ Queries in C# and .NET Core Web APIs
Jun 21, 2024.
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. Deferred execution via IQueryable delays query execution, optimizing database interactions.
Understanding Single, SingleOrDefault, First, and FirstOrDefault in LINQ .NET C#
Jun 07, 2024.
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 frequently used to retrieve elements from sequences.
Programming in Practice - LINQ Expression
May 06, 2024.
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 source. After reading the full story forget about ChatGPT and MSDN in the context of LINQ to make your life easier.
Single, SingleOrDefault, First, and FirstOrDefault in Linq .NET C#
Apr 30, 2024.
LINQ's element operators like Single, SingleOrDefault, First, FirstOrDefault, Last, and LastOrDefault provide specific functionalities for retrieving elements from collections in C#. Here's how to use them effectively.
New LINQ Methods in .NET 9 Preview
Apr 14, 2024.
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 article, I present how to use these methods.
Misconceptions About the Four LINQ methods
Mar 09, 2024.
Misconceptions about the four LINQ methods. Single(), SingleOrDefault(), First(), and FirstOrDefault(). This article addresses misconceptions surrounding four LINQ methods—Single(), SingleOrDefault(), First(), and FirstOrDefault(). Clarifying differences and potential pitfalls helps prevent null references and invalid operator exceptions in code.
Understanding LINQ in C#: Query Syntax and Method Syntax
Oct 03, 2023.
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 delves into both the query syntax and method syntax aspects of LINQ, providing readers with a thorough understanding of how to effectively use LINQ to query and manipulate data in C# applications.
Understanding LINQ in .NET
Sep 11, 2023.
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 for querying data from various sources, including in-memory collections, databases, XML, and more.
Exploring the Diverse Flavors of LINQ with Examples
Aug 22, 2023.
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 manipulate data without worrying about the underlying data source, whether it's an in-memory collection, a database, or XML
C# LINQ With Select and SelectMany Operator
Jul 10, 2023.
C# LINQ with select and select many operator
Find Blank Column Using LINQ In UiPath
Jan 03, 2023.
In this article, you will learn how to find blank column Using LINQ in UiPath.
Awesome LINQ Features In .Net 6
Feb 21, 2022.
In this article, you will learn about awesome LINQ features in .Net 6.
Awesome LINQ Impovements In .NET 6.0
Jan 20, 2022.
These are the articles for to show the LINQ improvements in .NET 6.
Using LINQ Expressions In C#
Sep 18, 2020.
In this article, you will learn how to use LINQ Expressions in C#.
Optimizing LINQ Queries In C#.NET For MS SQL Server
Aug 13, 2020.
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 JOIN and UNION for improving query efficiency. Utilize tools like SQL Complete for query history and formatting.
JavaScript Functions vs LINQ C#
Jul 05, 2020.
This is a comparison between Javascript functions and LINQ in C# for collections.
Basic Concepts About LINQ In C#
Oct 15, 2019.
In this article, you will learn some basic concepts about LINQ in C#.
How To Use Extensions For LINQ - C#
May 20, 2019.
In this tutorial, we will learn how to use extension methods with LINQ in C# to simplify the coding.
Increase Performance Of LINQ By Parallelism
Apr 09, 2019.
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 performance.
Working With Multiple Tables Using LINQ Join In MVC
Feb 22, 2019.
In this article, we will learn how we can join multiple tables using LINQ and display records in a View. We will learn everything in a step by step manner.
An Overview Of LINQ To SQL
Aug 03, 2018.
LINQ to SQL is a mapping between the Relational Database Schema and Objects. The relational data can be manipulated using LINQ by its mapped objects. When an object is linked to relational data, it receives attributes of the relational data. The mapping is done by translating the relational database schemas into object definitions and this can be done automatically by using the LINQ to SQL Tools in Visual Studio which is called Object Relational Designer (O/R Designer).
Introduction To LINQ And LINQ Syntaxes
Jul 20, 2018.
In this article, we will discuss on the introduction to LINQ And LINQ syntaxes.
Aggregate, The True LINQ Aggregator Operator
Mar 08, 2018.
Aggregate LINQ operator is unknown in the LinQs world. The goal of the project is to review the LinQ Aggregators operators (Count, LongCount, Min, Max, Sum and Average), and show all operators can be built with the Aggregate operator.
Introduction To LINQ With Entity Framework In Visual Studio
Feb 08, 2018.
LINQ queries are similar to SQL query created for developers to maintain standardized coding approach. It deals with the data objects therefore it is similar to OOPs.
How To Use Joins, and Group By Clause In Entity Framework With LINQ C#
Jul 15, 2017.
In this article will be going to learn How to use Joins, and Group By Clause in Entity Framework with Linq C#
Get Data From Multiple Tables Using Parameters While Combining LINQ Expressions
Jan 11, 2017.
In this article, you will learn how to get data from mutliple tables using parameters when combining LINQ expressions in ASP.NET MVC 5.
Overview Of Concurrency In LINQ To SQL
Jan 10, 2017.
In this article, you will learn about concurrency in LINQ to SQL.
Lazy Loading And Eager Loading In LINQ To SQL
Jan 08, 2017.
In this article, you will learn about Lazy Loading and Eager Loading in LINQ to SQL.
Identity Cache In LINQ To SQL
Jan 08, 2017.
In this article, we will see what identity cache is and its impact on LINQ to SQL queries.
Compile Queries And Execute SQL Queries Using LINQ To SQL
Jan 08, 2017.
In this article, you will learn how to compile queries and execute SQL queries, using LINQ to SQL.
Single Table Inheritance In LINQ To SQL
Jan 07, 2017.
In this article, we will see single table inheritance in LINQ to SQL.
How To View LINQ To SQL Generated SQL Queries And Using Stored Procedures With LINQ To SQL
Jan 02, 2017.
In this article, you will learn how to view LINQ to SQL generated SQL queries and use stored procedures with LINQ to SQL.
Stored Procedure With Output Parameters In LINQ To SQL And What SQLMetal Is
Jan 02, 2017.
In this article, you will learn how to call a stored procedure with output parameters using LINQ to SQL.
CRUD Operations Using LINQ To SQL
Jan 01, 2017.
In this article, you will learn about CRUD operations using LINQ to SQL.
How To Use LINQ To SQL For Retrieving Data From SQL Server Database
Jan 01, 2017.
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 is translated to T-SQL by the LINQ to SQL provider.
Diving Into Visual Studio 2015: Debugging Improvements (Tool Window Support for LINQ and Lambda) - Day Six
May 29, 2016.
In this article, you will learn about Debugging Improvements In Visual Studio 2015.
Export To Excel Data By LINQ to SQL
Apr 11, 2016.
In this article we will see how to get data from LINQ to SQL query and export to excel.
Stored Procedure with LINQ to SQL
Mar 30, 2016.
In this article you will learn how to work with stored procedure with LINQ to SQL.
Some Useful LINQ Query Operators
Mar 24, 2016.
In this article you will get to know about some useful LINQ Query Operators.
Create Dynamic LINQ Using Expressions
Feb 02, 2016.
In this article you will learn how to create Dynamic LINQ using Expressions.
Fetch RSS Feed Content From LINQ To XML
Jan 30, 2016.
In this article we are going to fetch content from LINQ to XML classes and manipulate XML atom feed and get their elements.
How To Bind GridView Using LINQ To SQL
Jan 25, 2016.
In this article I will cover the basics of creating DBML (LINQ to SQL ) class to get data and fill into the ASP GridView Control to fill, bind, and show the data.
CRUD Operation With GridView Using LINQ And Lambda Expressions
Jan 06, 2016.
In this Article, I am going to explain the DML Operation on GridView using LINQ to SQL Classes.
Work With LINQ TO SQL To Perform CRUD Operation
Dec 25, 2015.
In this article I am explaining the step to work with LINQ to SQL for performing CRUD Operation.
Work With LINQ To SQL
Dec 24, 2015.
In this article I am explaining the steps to work with LINQ to SQL for displaying the data in DataGridView.
Use LINQ To SQL On Web Form
Nov 29, 2015.
In this article I will explain how to use LINQ TO SQL on web form.
CRUD Operations Using LINQ to SQL In ASP.NET
Sep 23, 2015.
In this article I will show you step by step road map of creating an ASP.NET application.
CRUD Operation Using LINQ To XML Documents
Sep 21, 2015.
This article is about creating an ASP.NET website having CRUD operation using LINQ to XML documents.
Best LINQ Book
Sep 14, 2015.
So you want to learn LINQ programming? This article talks about LINQ resources and one of the best book I have read on LINQ.
CRUD Operations With LINQ to SQL in ASP.Net
Jul 28, 2015.
In this article you will learn about CRUD operations with LINQ.
ASP.Net MVC CRUD Operations Using jQuery JSON and LINQ To SQL Class
Jul 25, 2015.
In this article you will learn about MVC CRUD operations with jQuery JSON.
Dynamic LINQ Query In C# Using Predicate Builder
Jun 23, 2015.
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 build flexible queries for filtering data in applications, enhancing adaptability and performance.
Select Data Using LINQ to SQL Class in WPF
Jun 10, 2015.
This article shows how to select data using a LINQ to SQL class in WPF applications.
Delete Data Using LINQ to SQL Class in WPF
Jun 10, 2015.
This article shows how to delete data using LINQ to SQL in WPF applications.
Cascading Dropdown List In MVC Using LINQ to SQL
Jun 03, 2015.
In this article we will learn how to bind data from a table to a DropDownList in MVC using LINQ to SQL.
Create a Register and Login Page in MVC Using LINQ to SQL
May 27, 2015.
This article shows how to create a register and login page in MVC using LINQ to SQL with Model Validation.
Understanding LINQ in One-Liners
May 21, 2015.
This article provides one liner-explanations of terminology used with LINQ.
Understanding LINQ in Simple Words
May 21, 2015.
This article explains Language Integrated Query (LINQ) in detail.
Working With Multiple Tables in MVC Using LINQ to SQL
May 19, 2015.
This article shows how to use multiple tables in MVC using LINQ to SQL.
Convert LINQ Query to DataTable
May 03, 2015.
This article shows how a LINQ query result can be converted to a datatable and later how the datatable can be consumed depending on the requirements.
CRUD Operations Using LINQ to SQL in MVC
Mar 18, 2015.
In this article we will learn to Create, Read ,Update, Delete (CRUD) In a MVC application using LINQ to SQL.
Learning LINQ Made Easy (LINQ to XML)
Mar 15, 2015.
This article is the next article in LINQ learning tutorials which will cover LINQ to XML basics.
Various Ways To Write LINQ Queries
Feb 13, 2015.
In this article we will learn various ways to write LINQ queries.
What LINQ is
Feb 05, 2015.
In this article you will learn about LINQ. Language Integrated Query (LINQ) enables us to query any type of data stored in SQL Server, XML documents, List, Arrays and so on.
Understanding Projections In LINQ With Select & SelectMany Enumerable Methods
Jan 02, 2015.
In this article I will try to explain how to use projections in LINQ with a collection of objects.
Learning LINQ Made Easy (LINQ to SQL)
Dec 31, 2014.
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 Easy
Dec 29, 2014.
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 with data across various kinds of data sources and formats.
Join Two DataTables Using LINQ In ASP.Net C#
Dec 11, 2014.
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 data processing and integration within ASP.NET applications.
Convert LINQ Query Result to Datatable
Nov 27, 2014.
In this article, we will learn how to convert Linq query result into the Datatable.
Dynamic LINQ Query In C#
Jul 31, 2014.
This article shows how to use a dynamic LINQ library in C#. We will learn how to use SELECT Statement at runtime in Linq C#
SQL Join in LINQ (LINQ to Entity / LINQ to SQL)
May 28, 2014.
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.
Login Form Using LINQ in Windows Forms Application
May 10, 2014.
In this article we create a login form using LINQ (Language integrated Query) in a Windows Forms Application.
Develop a Windows Desktop Application Using LINQ to SQL Class
May 05, 2014.
This shows how to develop a desktop application using LINQ To SQL Class.
Insert, Update, Delete Data in LINQ to SQL Through DataGridView
Mar 05, 2014.
Today in this article I will show you how to in insert, update, delete, display data in LINQ To SQL through DataGridView.
How to Use LINQ To DataSet
Mar 03, 2014.
Here I would like to describe how to use a LINQ query and describe how to query dataset data.
An MVC Application With LINQ to SQL
Jan 13, 2014.
This article introduces how to create a MVC application using LINQ to SQL.
An Understanding of LINQ (Language-Integrated Query)
Nov 21, 2013.
This article discusses the powers of LINQ and how to use it along with an explaination of several methods to increase its productivity.
Inserting Data in the Database Using LINQ to SQL
Nov 03, 2013.
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 concurrency control for robust data management.
Using LINQ with C#
Oct 22, 2013.
LINQ introduces a standard, unified, easy-to-learn approach for querying and modifying data. In this article, you'll learn basics of LINQ and how to use LINQ in C#.
SingleOrDefault and FirstOrDefault Methods in LINQ to SQL
Sep 26, 2013.
This article explains the differences between the SingleOrDefault and FirstOrDefault Methods in LINQ to SQL.
CRUD Operations Using LINQ to SQL in MVC
Sep 22, 2013.
This article introduces basic Create, Read, Update and Delete (CRUD) operations using LINQ to SQL in MVC with a sample application.
Cascading Dropdown List With MVC, LINQ to SQL and AJAX
Sep 18, 2013.
This article explains how to populate a child DropDownList depending on each new value as values are selected in the parent's DropDown List.
Creating MVC Application & Perform CRUD operations using LINQ to SQL: Part 2
Jul 11, 2013.
This article focuses on the practical implementation of the MVC Pattern.
What is LINQ and Array Processing Using LINQ
Jun 23, 2013.
This article shows how a LINQ query can process a simple integer array using the C# programming language with nice examples.
Using LINQ in .NET
Mar 21, 2013.
In this article we will discuss the LINQ approach introduced in .NET 3.5 for querying.
The Like Method LINQ App to Select Data
Jan 26, 2013.
Today, in this article let’s play around with one of the interesting and most useful concepts in LINQ.
Between Functionality Using LINQ App - Select Data
Jan 26, 2013.
Today, in this article let's play around with an interesting and very useful concept in LINQ.
Bind List Using LINQ Extension
Dec 26, 2012.
Throughout this article, you will learn how to create a group and sort the records by the group using LINQ.
Take and Skip Operator In LINQ to SQL
Dec 06, 2012.
In this article I am going to explain the Take and Skip operators in LINQ to SQL. The Take operator is used to return a given number of rows from a database table and the Skip operator skips over a specifed number of rows in a database table.
Aggregate Functions in Linq To SQL
Dec 05, 2012.
In this article I am going to explain how to use aggregate functions in LINQ to SQL as well as in SQL Server.
Parallel LINQ in C#
Nov 29, 2012.
Today, in this article let's play around with one of the interesting and most useful concepts in C# with LINQ.
Insert and Update Data With LINQ Using XSD
Nov 12, 2012.
Today, in this article let's play around with one of the interesting and most useful concept of Insert and Update data in LINQ using XSD.
Select and Delete Data With LINQ Using XSD
Nov 11, 2012.
Today, in this article let's play around with one of the interesting and most useful concept of Select and Delete Data in LINQ.
Easy LINQ to SQL Based Master-Detail Editor in Visual Basic
Nov 10, 2012.
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 below will allow the user to edit the master record as well as the detail records.
1
-
100
of
389
<<
1
2
3
4
>>
Search
OUR TRAINING