Click here to Skip to main content
Click here to Skip to main content

Better LINQ with better example

By , 8 Sep 2008
 

Introduction

What is LINQ??

LINQ stand for Language-Integrated Query is now available as a integral part of Visual Studio 2008.

LINQ has a great power of querying on any source of data, data source could be the collections of objects, database or XML files. We can easily retrieve data from any object that implements the IEnumerable<T> interface. Microsoft basically divides LINQ into three areas and that are give below.

  • LINQ to Object
  • LINQ to ADO.Net  
    • LINQ to SQL
    • LINQ to Dataset
    • LINQ to Entities
  • LINQ to XML

Basics samples of LINQ (for beginners) :

http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx

Assuming you know the basics of LINQ I will continue with a bit high end sample lets move further with an example of a company.

The Company sample: 

    Downloads: 

Here we will see how a linq can be utilized in a company module.

The company class will contain a Collection of employee class and employee will contain a struct for individual addresses.

Hierarchy: 

CompanyLINQ.JPG

If we have a project with above hierarchy, let’s see how we can use LINQ to access details from multilevel classes.

After creation of companies we will try to find the details at multilevel and see how conditionally data can be fetched.

1)      List details of employees

2)      Count no of employees in each company

3)      List employees who are staying in Bangalore

4)      List employee who is paid highest in each companies

5)      Overall Highest paid employee

6)      Salary paid by companies in each city

7)      Salary paid by each company in each city.

List details of employees:

Now we shall list all the employees with their details and company name.

var EmpDetails = from comp in ListCompany 
                 select new<o:p> {
                       Emp = (from emp in comp.ListEmp<o:p>  
                              select new {
                                   Company = comp.Name, 
                                   emp 
                              })
                  }; </o:p></o:p>

Here we use sub queries since we need all employee details with their respective company name and both the details are at different levels.

So first we Loops through the companies in the company list  

from comp in ListCompany  

and then within each selected company it loops through each employee

from emp in comp.ListEmp 

  

Count no of employees in each company:

<o:p> </o:p> var LessEmp = from  Comp in  ListCompany  
                select new<o:p> { 
                                       Comp.Name,
                       EmpCount = Comp.ListEmp.Count
                            };   </o:p>

List employees who are staying in Bangalore: 

Here we use compound from clause to retrieve the employees who are staying in any city that contains BAN or ban.  

var EmpInACity = from comp in ListCompany<o:p> 

                 from emplist in comp.ListEmp 
                 where emplist.Address.City.ToUpper().Contains(&quot;BAN&quot;)
                 select new {
                        CompName = comp.Name,
                        EmployeeName = emplist.Name 
                 }; </o:p>

List employee who is paid highest in each companies: 

For finding the highest paid employee we first loop through all the companies and employees in each company using compound from clause.

Where condition filters only those employees those have the salary equal to the max salary in current company. 

var  EmpHighSalEachComp = from comp in ListCompany 
                          from empHigh in comp.ListEmp  
                          where empHigh.salary == comp.ListEmp.Max(
                          HighEmp => HighEmp.salary)<o:p> 
                          select new {
                                 CompanyName = comp.Name, 
                                 EmpHighName = empHigh.Name,
                                 EmpHighSal = empHigh.salary
                          }; </o:p>

Overall Highest paid employee:

The same above procedure is followed but the only difference comes in the where condition where we match the employee’s salary to the max salary from all the companies. 

var EmpHighSal = from comp in ListCompany
                 from emp in comp.ListEmp 
                 where emp.salary == ListCompany.Max(
                 TComp => TComp.ListEmp.Max(HighEmp => HighEmp.salary))
                 select new {
                        CompanyName = comp.Name ,
                        EmployeeName = emp.Name,
                        EmpSal = emp.salary
                 }; 

Salary paid by companies in each city: 

Here we will group by city and sum up all the salaries of the employees who are staying in that city. 

var CompanyCityWise = from comp in ListCompany          

                      from emp in comp.ListEmp 
                                       group emp by emp.Address.City into CityWiseEmp 
                      select new {
                             State = CityWiseEmp.Key, 
                             TotalSalary = CityWiseEmp.Sum(emp => emp.salary) 
                      }; 

Salary paid by each company in each city. 

Here for each company a group by clause is applied and from each company employees staying at different locations are fetched.

var  CityWiseSalary = from comp in ListCompany 
                      select new { 
                             comp.Name,
                             Emp =(from emp in comp.ListEmp 
                             group emp by emp.Address.City into CityWiseEmp
                             select new {
                                    State = CityWiseEmp.Key,
                                    TotalSalary = CityWiseEmp.Sum(emp => emp.salary) 
                             })
                      }; 

More references on LINQ:

More samples on LINQ: 

http://csharpbasic.blogspot.com/ 

In Depth LINQ: (Naveen's Weblog)

http://codingsense.wordpress.com/

Standard Query Operators in a Nutshell:

http://msdn.microsoft.com/en-us/library/bb308959.aspx#linqoverview_topic8

More LINQ: 

http://msdn.microsoft.com/en-us/library/bb397676.aspx

Any suggestions are most welcome.

Happy learning :) 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

NaveenPrabhu
Software Developer (Senior) Relyon Softech LTD, Bangalore.
India India
Member
I m a software Engineer working on .Net and SQL Server 2005.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 4membercrcklssp3 Mar '13 - 18:30 
QuestionThis is very good article.memberJayesh Sorathia6 Dec '12 - 21:13 
GeneralMy vote of 5membersrinivaskumar pasumarthi3 Nov '12 - 0:24 
QuestionI am unable to unzip the zip code filememberRukeshjee12 Sep '12 - 7:13 
GeneralMy vote of 5memberprabhakamaji30 Nov '11 - 1:08 
GeneralMy vote of 5memberMember 7143808 Sep '10 - 1:47 
GeneralMy vote of 1membercupim1 Feb '10 - 6:57 
GeneralNice articlememberankurpatell8 Sep '09 - 8:01 
GeneralGood one....membermanas17 Sep '08 - 3:39 
GeneralRe: Good one....memberNaveenPrabhu18 Sep '08 - 1:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 9 Sep 2008
Article Copyright 2008 by NaveenPrabhu
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid