COMMUNITY: How to properly ask a question on Forums
Become a member
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
TECHNOLOGIES
ANSWERS
LEARN
NEWS
BLOGS
VIDEOS
INTERVIEW PREP
BOOKS
EVENTS
LIVE
CAREER
MEMBERS
JOBS
Training
About Linq
LINQ
is shorted for ( Language Integrated Query ) which is programming model of Microsoft .NET that have query capabilities to the .NET programming languages. All these extensions are provide easy and expressive syntax to manipulate data. In C# and Visual Basic have number of features that support
LINQ
operations. It has been powerful querying on objects, XML files, and databases.
LINQ
encapsulates heavy generics and there different features likes extension methods, lambda expressions, an object Initialize, query syntax, and anonymous types. These are language extensions to enhance syntactic performance to queries.
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Akshay Phadke (11)
Andrea Angella (6)
Gnanavel Sekar (6)
Manoj Kalla (5)
Atul Rawat (5)
Debendra Dash (4)
Rupesh Kahane (3)
Juan Francisco Morales Larios (3)
Muhammad Aqib Shehzad (3)
Rahul Sahay (3)
Vijay Prativadi (3)
Harpreet Singh (2)
Devinder Yadav (2)
Rakesh (2)
Vincent Maverick Durano (2)
Akhil Mittal (2)
Amit Choudhary (2)
Sandeep Kumar (2)
Rion Williams (2)
Madhuri Mishra (2)
Altaf Ansari (1)
Raj Kumar (1)
Ano Mepani (1)
Devesh Omar (1)
Manikavelu Velayutham (1)
Jignesh Trivedi (1)
Pradeep Shet (1)
Sibeesh Venu (1)
Bryian Tan (1)
Anil Thakur (1)
Tapan Patel (1)
Suthish Nair (1)
Arunava Bhattacharjee (1)
Bhuvanesh Mohankumar (1)
Manimekalai Ganesan (1)
Mukesh Kumar (1)
Usman Arshad (1)
Mohsin Azam (1)
Kundan Jha (1)
Rhishikesh Lathe (1)
Shridhar Sharma (1)
Surya Pratap Singh (1)
Mahesh Chand (1)
Rakesh Sadhula (1)
Jaipal Reddy (1)
Rahul Saxena (1)
Nilesh Jadav (1)
Jean-Pierre Bachmann (1)
Kailash Chandra Behera (1)
Carmelo La Monica (1)
Related resources for Linq
No resource found
Bind Menu And Sub Menu Dynamically In ASP.NET MVC From Database Using LINQ
1/12/2018 10:06:10 AM.
Many times we need to create a menu for a simple application. We ususally get stuck on how to bind the menu. Here in this article we you will learn how to bind menu and sub menu dynamically in ASP.NET
Excel To XML Using LINQ
1/4/2018 2:05:38 AM.
In this article we will show you the easiest way to convert Excel data into Xml files. There is a certain way to convert Excel file to Xml, for example using Excel Library (Com Component)
Overview Of Let In LINQ
10/10/2017 1:15:34 AM.
In general, Let allows create a local variable at the LinQ query. Let has the same operation as to build local variable in a loop. The example with let hast better performance than the without let exa
Productive C# - Inferred Tuple Element Names In C# 7.1
9/22/2017 1:33:34 AM.
Learn how tuple element names are automatically inferred in C# 7.1.
Two Ways To Get Data From Entity Framework
9/18/2017 6:27:52 AM.
In this article, you will learn about two basic ways to get data from Entity Framework and display data in angular UI-Grid using MVC application with Web API.
Practical C# - Sorting In LINQ
9/6/2017 6:50:29 AM.
Learn how to order collections using C# and LINQ.
Practical C# - LINQ Set Operations
9/5/2017 2:12:33 AM.
Learn how to use the LINQ Set Operations in C# (distinct, union, intersect and except).
Use Of Union, Intersect, Distinct And Except In LINQ
9/1/2017 12:45:29 PM.
Here, you will learn the uses of Union, Intersect, Except, and their differences, To get a clear picture, we will go with examples.
Practical C# - Sorting in LINQ
9/1/2017 2:19:53 AM.
Learn how to sort collections in ascending and descending order using LINQ in C#.
Use Of Deferred And Immediate Query Execution In LINQ
8/31/2017 6:59:34 PM.
Here, you will see about query execution in linq and what is deffered query execution, what is immediate query execution and it's differences, we will see with example for better understanding.
Dynamic LINQ Query In C# Using Predicate Builder
8/23/2017 7:43:58 AM.
This article explains how to create a dynamic LINQ query in c# using Predicate Builder.
Dynamic LINQ Query In C#
8/23/2017 7:38:51 AM.
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#
Practical C# - SelectMany In LINQ
8/23/2017 1:29:02 AM.
Learn all the possible ways to use SelectMany in LINQ to implement sophisticated queries who need to flatten sequences of sequences in C#.
Use Of Range, Repeat And Empty In LINQ
8/21/2017 5:15:28 PM.
Here, we are going to see the uses of the Range,Repeat and Empty keywords in LINQ and we also will discuss their differences.
Practical C# - Sequence Equality
8/18/2017 2:11:04 AM.
Learn how to check if two lists or sequences are equal using C#. Did you know Microsoft implemented this for you in the .NET Framework 3.5?
Element Operators In LINQ
8/17/2017 10:59:42 AM.
Here, we will learn about Element Operators, their uses, and various element operators.
Use Of Into And Let In LINQ
8/7/2017 12:34:11 PM.
Here, we going to see the uses of Into and Let keywords in LINQ and their differences.
LINQ Operators And Lambda Expression - Syntax & Examples
7/25/2017 7:06:03 AM.
LINQ is a cool feature in C# 3.0. Most of the developers are struggling for the syntax and examples. Here I have collected various examples for each operator in LINQ and the equivalent Lambda Expressi
How To Use Joins, and Group By Clause In Entity Framework With LINQ C#
7/15/2017 12:40:08 PM.
In this article will be going to learn How to use Joins, and Group By Clause in Entity Framework with Linq C#
Anonymous Types In C#
7/12/2017 7:22:44 AM.
Anonymous types allow us to create new type without defining them. This is way to defining read only properties into a single object without having to define type explicitly.
Writing Complex Queries Using LINQ And Lambda
6/26/2017 7:54:53 AM.
I am writing this article based on request by some developers regarding how to write some complex queries using LINQ & Lambda expression which consist of joins / groupby / aggregate functions
What LINQ is
6/22/2017 4:21:49 AM.
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.
LINQ Basic To Advanced - MVC Demo Application
5/17/2017 5:44:49 PM.
Here, in this post, we are going to see some basic and advanced LINQ queries
What Is Deferred/ Lazy Loading And Eager Loading?
4/28/2017 3:18:56 PM.
In his article, you will learn about Deferred/ Lazy Loading and Eager Loading.
A Brief Introduction To LINQ
4/28/2017 12:15:16 AM.
Introduction to LINQ.
LINQ Extended Joins
4/24/2017 12:25:36 PM.
This article illustrates LINQ extended joins.
Aggregate Function With LINQ In C#
4/11/2017 7:21:49 PM.
In this article, we going to see about how to use the aggregate function with LINQ.
ASP.Net MVC CRUD Operations Using jQuery JSON and LINQ To SQL Class
2/8/2017 11:22:17 PM.
In this article you will learn about MVC CRUD operations with jQuery JSON.
Convert DateTime To String Format Using IQueryable
2/7/2017 12:08:52 AM.
In this article, you will learn how to convert DateTime to string (yyyy/mm/dd) format in ViewModel/Whatever class with IQueryable.
LINQ To SQL - CRUD Operations
1/19/2017 12:16:38 AM.
In this article, we will see LINQ to SQL CRUD Operations.
Get Data From Multiple Tables Using Parameters While Combining LINQ Expressions
1/11/2017 10:41:00 AM.
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
1/10/2017 11:24:23 PM.
In this article, you will learn about concurrency in LINQ to SQL.
Compile Queries And Execute SQL Queries Using LINQ To SQL
1/8/2017 11:18:03 PM.
In this article, you will learn how to compile queries and execute SQL queries, using LINQ to SQL.
Lazy Loading And Eager Loading In LINQ To SQL
1/8/2017 4:14:49 PM.
In this article, you will learn about Lazy Loading and Eager Loading in LINQ to SQL.
Identity Cache In LINQ To SQL
1/8/2017 2:04:07 PM.
In this article, we will see what identity cache is and its impact on LINQ to SQL queries.
Single Table Inheritance In LINQ To SQL
1/7/2017 1:18:41 PM.
In this article, we will see single table inheritance in LINQ to SQL.
Stored Procedure With Output Parameters In LINQ To SQL And What SQLMetal Is
1/2/2017 9:03:10 AM.
In this article, you will learn how to call a stored procedure with output parameters using LINQ to SQL.
How To View LINQ To SQL Generated SQL Queries And Using Stored Procedures With LINQ To SQL
1/2/2017 8:51:02 AM.
In this article, you will learn how to view LINQ to SQL generated SQL queries and use stored procedures with LINQ to SQL.
CRUD Operations Using LINQ To SQL
1/1/2017 2:01:12 PM.
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
1/1/2017 1:57:28 PM.
In this article, we will learn how to use LINQ to SQL to retrieve data from the SQL server database.
Introduction To LINQ
12/26/2016 4:05:28 PM.
In this article you will learn an introduction to LINQ.
Introduction To Generic IEqualityComparer
11/27/2016 1:34:13 PM.
In this article, you will learn about Generic IEquality Comparer.
Bind Add Update Delete Data Using MVC Entity Framework And LINQ
8/29/2016 10:16:39 AM.
In the article, you will learn how to add, update, and delete data, using Entity Framework and LINQ. This is for the beginner users like me in MVC.
LINQ to SQL - Basic Guide To Perform Fetch, Filter, Insert, Update And Delete
8/25/2016 4:01:12 PM.
In this article, you will learn the basic guide to perform fetch, filter, insert, update and delete in LINQ to SQL.
Testing The Code Performance Of PLINQ
8/11/2016 3:56:38 PM.
In this article, you will learn about testing the code performance of PLINQ.
Must Have Visual Studio Extensions or Tools - Part One
7/28/2016 1:23:50 AM.
In this article you will learn Visual Studio extensions or tools that supports development activities.
Diving Into Visual Studio 2015: Debugging Improvements (Tool Window Support for LINQ and Lambda) - Day Six
6/14/2016 11:19:28 AM.
In this article, you will learn about Debugging Improvements In Visual Studio 2015.
Func<> Delegates in LINQ
5/28/2016 7:33:04 AM.
Learn how Func<> Delegates in LINQ work.
LINQ to SQL Using Visual Studio
5/18/2016 4:10:01 PM.
In this article you will learn about LINQ to SQL using Visual Studio.
Creating MVC Application & Perform CRUD operations using LINQ to SQL: Part 2
4/14/2016 12:41:01 AM.
This article focuses on the practical implementation of the MVC Pattern.
Export To Excel Data By LINQ to SQL
4/11/2016 12:02:02 PM.
In this article we will see how to get data from LINQ to SQL query and export to excel.
LINQ - Partitioning Operators
4/4/2016 10:28:55 AM.
In this article you will learn about Partitioning Operators in LINQ. We will learn about LINQ Partitioning Operators: Skip, SkipWhile and Take, TakeWhile.
An Overview Of LINQ
3/30/2016 2:00:33 PM.
In this article you will get an overview of LINQ.
Stored Procedure with LINQ to SQL
3/30/2016 12:34:57 PM.
In this article you will learn how to work with stored procedure with LINQ to SQL.
Some Useful LINQ Query Operators
3/24/2016 11:12:45 AM.
In this article you will get to know about some useful LINQ Query Operators.
Nullable Types And Null Coalescing Operator In C#
2/27/2016 12:17:34 PM.
In this article you will learn about nullable types and the null coalescing operator in C#. We will also see its use in LINQ queries.
SQL Join Query With LINQ
2/23/2016 9:23:08 AM.
In this article, I will show you how to make your query in SQL and the same query in Linq.
Lookup In LINQ
2/6/2016 2:08:30 PM.
In this article I am going to discuss what lookup in LINQ is and will compare it withthe dictionary.
Create Dynamic LINQ Using Expressions
2/3/2016 10:56:34 PM.
In this article you will learn how to create Dynamic LINQ using Expressions.
LINQ: Handling Of Array, List Object And GROUP BY
2/2/2016 10:17:44 AM.
In this article you will learn about handling of array, List Object and GROUP BY.
Joins In LINQ
2/2/2016 1:21:37 AM.
In this article I am going to discuss different types of joins in LINQ.
Beginners Guide For Expression Trees In C# - Understanding Expressions
2/2/2016 1:12:17 AM.
In this article you will get a beginners guide for Expression Trees in C#.
Fetch RSS Feed Content From LINQ To XML
1/30/2016 1:42:30 PM.
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
1/25/2016 5:16:41 AM.
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.
Introduction To LINQ
1/16/2016 11:17:17 AM.
In this article you will learn about an introduction of LINQ and styles of writing LINQ queries.
Export Files In Excel Using EPPlus And LINQ
1/13/2016 4:07:35 AM.
In this article I have demonstrated how to export file in Excel format using LINQ to SQL and EPPlus dll in an easy way.
CRUD Operation With GridView Using LINQ And Lambda Expressions
1/6/2016 7:11:00 AM.
In this Article, I am going to explain the DML Operation on GridView using LINQ to SQL Classes.
Evolution Of Microsoft Data Access Technologies
12/31/2015 5:46:42 AM.
This article beams on how Microsoft data access technologies evolved over the period of time.
Work With LINQ TO SQL To Perform CRUD Operation
12/25/2015 2:09:25 PM.
In this article I am explaining the step to work with LINQ to SQL for performing CRUD Operation.
Work With LINQ To SQL
12/24/2015 2:58:27 PM.
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
11/29/2015 11:48:22 AM.
In this article I will explain how to use LINQ TO SQL on web form.
Querying Wikipedia In ASP.NET Using LINQ-to-Wiki
10/28/2015 3:23:43 PM.
In this article you will learn querying Wikipedia in ASP.NET using LINQ-to-Wiki.
Generating An MD5 Hash From A String Using LINQ
10/27/2015 12:30:26 PM.
In this article you will learn how to generate an MD5 Hash from a String Using LINQ.
CRUD Operations Using LINQ to SQL In ASP.NET
9/23/2015 3:58:29 AM.
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
9/21/2015 1:24:38 AM.
This article is about creating an ASP.NET website having CRUD operation using LINQ to XML documents.
Best LINQ Book
9/14/2015 8:44:15 PM.
So you want to learn LINQ programming? This article talks about LINQ resources and one of the best book I have read on LINQ.
Read Tweets From Twitter Using LinqToTwitter
9/11/2015 1:41:25 AM.
In this article we will learn how to fetch data from Twitter using LinqToTwitter.
CRUD Operations With LINQ to SQL in ASP.Net
7/28/2015 3:30:15 PM.
In this article you will learn about CRUD operations with LINQ.
CheckBoxList in ASP.Net MVC
6/23/2015 3:32:16 PM.
This article shows how to use a CheckBoxList control in MVC using a HTML helper.
Getting Started With LINQ
6/15/2015 11:43:42 AM.
This article explains LINQ operations.
Perform CRUD Operations in Database Using LINQ
6/13/2015 1:15:03 PM.
In this article, I explain how to select, insert , update and delete records in a database using LINQ.
Select Data Using LINQ to SQL Class in WPF
6/10/2015 10:08:46 PM.
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
6/10/2015 6:29:59 PM.
This article shows how to delete data using LINQ to SQL in WPF applications.
Select Data Using Entity Framework Async Call
6/8/2015 3:59:15 AM.
This article shows how to select data using an Entity Framework async call.
Deferred Vs Immediate Query Execution in LINQ
6/5/2015 1:33:56 PM.
In this article I will explain the difference between Deferred & Immediate Query Execution in LINQ.
LINQ Tutorial: Part 1
6/4/2015 5:32:47 AM.
In this article you will learn the basics of LINQ as Part 1 of the series.
Cascading Dropdown List With MVC, LINQ to SQL and AJAX
6/3/2015 12:54:54 PM.
In this article we will learn how to bind data from a table to a DropDownList in MVC using LINQ to SQL.
Use LINQPad With .NET Framework
5/31/2015 1:40:46 PM.
In this article you will learn how to use LINQPad with .NET Framework.
Create a Register and Login Page in MVC Using LINQ to SQL
5/27/2015 3:16:46 PM.
This article shows how to create a register and login page in MVC using LINQ to SQL with Model Validation.
Insert Data Into GridView Using LINQ
5/26/2015 1:35:53 PM.
In this article I'll show you how to insert data into a GridView using LINQ in ASP.NET C#.
ORM Designer for Entity Framework
5/25/2015 8:08:46 AM.
This article describes the Entity Developer tool Devart.
Understanding LINQ in One-Liners
5/21/2015 9:43:53 PM.
This article provides one liner-explanations of terminology used with LINQ.
Understanding LINQ in Simple Words
5/21/2015 6:04:46 PM.
This article explains Language Integrated Query (LINQ) in detail.
Working With Multiple Tables in MVC Using LINQ to SQL
5/19/2015 1:52:15 PM.
This article shows how to use multiple tables in MVC using LINQ to SQL.
Things Every Good Developer Should Know
5/18/2015 3:17:02 PM.
This article describes most of the things that every good developer should know.
Discuss GroupBy Operator in LINQ
5/13/2015 3:34:41 PM.
This article explains the GroupBy operator in LINQ.
LINQ Except, Intersect and Union Method/ Operator in C#
5/13/2015 1:50:58 AM.
This article gives demonstrates to use of expect, intersect and union of LINQ method in C# and their difference.
Generate Hyperlinks Using Actionlink Html Helper
5/12/2015 5:22:38 PM.
This article shows how to use hyperlinks using an Actionlink html helper and LINQ to SQL
LINQ To Objects View Data According to a Search Criteria In C#
5/11/2015 10:07:17 AM.
This article shows how to perform searches with LinqToObjects within a collection for the accuracy of the lists of objects.
Various Ways to Get Distinct Values From a List<T> Using LINQ
5/7/2015 8:24:23 AM.
This article explains the various scenarios regarding filtering distinct values from the List<T>.