When to use LINQ instead of Procedure in .NET applications
When to use LINQ instead of Procedure in .NET applications

LINQ provides with common query syntax to query data sources while stored procedure is a pre-compiled set of one or more SQL statements that are stored in DBMS.

Explain the use of LINQ in .NET
Explain the use of LINQ in .NET

LINQ supports filtering, sorting, ordering, grouping. It makes easy debugging because it is integrated with C# language. Let's know more about the uses of LINQ.

LINQ Joins in C#
LINQ Joins in C#

In this blog, I’m explaining about joins in LINQ in .NetThere are different types of LINQ joins.1.Inner join2.Left join3.Cross join4.Group joinInner j

Reading XML from LINQ
Reading XML from LINQ

In this blog, I’m explaining how to read the xml from linq query.Example In this example, we will have two combo boxes – country and city and we will

Language Integrated Query (LINQ)
Language Integrated Query (LINQ)

In this blog, I’m explaining the language integrated query and how to use it in our application. LINQ stands for Language Integrated Query is a moder

Introduction to LINQ
Introduction to LINQ

Language-Integrated Query (LINQ) is a set of features introduced in Visual Studio 2008 that extends powerful query capabilities to the language syntax of C# and Visual Basic.

LINQ to SQL Backward compatibility:
LINQ to SQL Backward compatibility:

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.Linq; using System.Data.Linq.Mapping; us

LINQ Implementation on 3-tier application
LINQ Implementation on 3-tier application

Language Integrated Query (LINQ), pronounced simply as 'link' is a is a component released within the .NET 3.5 Framework. It is one of the most powerf

I LINQ to Array.
I LINQ to Array.

Hi...In this blog I will give you a small demonstration on LINQ to ARRAY. Here I will explain you that how to use LINQ for array to perform certain ta

LINQ in .NET
LINQ in .NET

LINQ is a set of extensions to the .NET Framework that encompass language-integrated query, set, and transform operations. It extends C# and Visual Ba

What is LINQ?
What is LINQ?

LINQ address the current database development model in thecontext of Object Oriented Programming Model. If we want to develop database applicationin .