This is an article for beginners in LINQ and provides answers to frequently asked questions.
Introduction
Introduction and Goal
In this section, we will run through the basics of LINQ and then see five basic LINQ queries which you will always need in your project for queries. While looking at the basics, we will also try to learn what problems LINQ solves from the perspective of middle tier business objects.
You can download my 1000 questions and answers .NET book. I am dead sure you will enjoy it.
Other LINQ FAQs
LINQ FAQ Part II: In this FAQ, we will see a basic example of LINQ to SQL, how to define 1-1 and 1-many relationships using LINQ, how we can optimize LINQ queries, execution of Stored Procedures using LINQ, and finally a simple CRUD example using LINQ to SQL.
Define LINQ
LINQ is a uniform programming model for any kind of data access. LINQ enables you to query and manipulate data independently of data sources. The figure below shows how .NET languages stand over the LINQ programming model and work in a uniform manner over any kind of data source. It’s like a query language which can query any data source and any transform. LINQ also provides full type safety and compile time checking. LINQ can serve as a good entity for the middle tier. So it will sit in between the UI and data access layers.
Below is a simple sample of LINQ. We have a collection of data objcountries
to which LINQ is making a query with country name ‘India
’. The collection objcountries
can be any data source: dataset, datareader, XML etc. The figure below shows how ObjCountries
can be any data. We then query for CountryCode
and loop through it.
How does LINQ Help Us from the Perspective of Business Objects?
One of the tedious jobs in business objects is parsing and searching object collections. For instance, consider the below figure where we want to search a country by an ID value. What we do is loop through the collection and get the object. Many may argue about keeping a key in a List
or Array
. Shown below is just a sample. If you want to search using country code and name, list / collection keys will not work with multi-value searches.
In other words, using LINQ, we can query business object collections and filter the collections using a single LINQ query.
Can You Explain How a Basic LINQ Query Looks Like?
In order to understand a basic query for LINQ, let’s make a small sample project. Let’s take customer data which has customers and orders.
Customer Name | Customer Code | City | Orders |
Khadak | 001 | Mumbai |
|
Shiv | 002 | Delhi |
|
Raju | 003 | Mumbai |
|
Shaam | 004 | Delhi |
|
We have made the data a bit complex by having one customer and multiple orders, in other words, we have one to many relationships.
So let’s make two classes: the customer class aggregated with a collection of addresses class. Below is how the class structure will look like to accommodate the one to many relationships of customer and multiple addresses.
The multiple addresses are the array collection aggregated inside the customer
class. Shown below is a code snippet which loads the customer
and address
collections with hard coded data provided in the above table. Currently it is hardcoded, but this can be loaded from a database or some other source also.
clsCustomer[] objCustomer = new clsCustomer[]
{
new clsCustomer{CustomerName="Khadak",customerCode="001",
City="Mumbai",Orders = new clsOrder[] {new clsOrder{ProductName="Shirt"},
new clsOrder{ProductName="Socks"}}},
new clsCustomer{CustomerName="Shiv",customerCode="002",
City="Delhi",Orders = new clsOrder[]{new clsOrder{ProductName="Pants"}}},
new clsCustomer{CustomerName="Raju",customerCode="003",
City="Mumbai",Orders = new clsOrder[]{new clsOrder{ProductName="Socks"}}},
new clsCustomer{CustomerName="Shaam",customerCode="004",
City="Delhi",Orders = new clsOrder[]{new clsOrder{ProductName="Shoes"}}}};
A basic LINQ query looks like something as shown below. It starts with the verb from
followed by the data type and the objects, i.e., clsCustomer
and obj
objects. objCustomer
is the collection which has the customer
and address
es which we have loaded in the top section. select obj
specifies that we need all the values.
from clsCustomer obj in objCustomer select obj
The figure below shows on the right hand side the query in LINQ. In the left hand side, we loop through the object collection.
We have made a simple project which demonstrates a basic LINQ query; you can download it to see how it works actually. The figure below shows the execution of the simple query.
How Do We Write a LINQ Query to Search With Criteria?
We need to put the where
clause before the select
keyword.
return from clsCustomer Obj in objCustomer where Obj.customerCode == "001" select Obj;
The figure below shows the where
clause in action.
How to Do a Join Using LINQ Query
Below is a LINQ code snippet for creating joins between object collections. In this case, we are creating a join
on customer
and order
s. If you remember, the order
collection was contained in the customer
class.
return from clsCustomer ObjCust in objCustomer
from clsOrder ObjOrder in ObjCust.Orders
select ObjCust;
Shown below is the result of a LINQ join
query:
How Can We Do a Group by Using LINQ Query?
The code snippet below shows how a group by
query is written using LINQ. You can see we have first created a temp variable GroupTemp
and then used the Select
clause to return it.
var GroupCustomers = from ObjCust in objCustomer
group ObjCust by ObjCust.City into GroupTemp
select new {GroupTemp.Key,GroupTemp};
The image below shows group by
in action.
How Can We Do an Order by Using a LINQ Query?
Order by in LINQ is pretty simple. We just need to insert order by
before the Select
query.
return from clsCustomer ObjCust in objCustomer
orderby ObjCust.City
select ObjCust;
The figure below shows how we have ordered on the city
name.
- 5th March, 2009: Initial version
For further reading do watch the below interview preparation videos and step by step video series.