Blue Theme Orange Theme Green Theme Red Theme
 
Discover the top 5 tips for understanding .NET Interop
Home | Forums | Videos | Advertise | Certifications | Downloads | Blogs | Interviews | Jobs | Beginners | Training
 | Consulting  
Submit an Article Submit a Blog 
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
Nevron Chart
Search :       Advanced Search »
Home » LINQ » LINQ to Object Part #2: Filtering and Sorting

LINQ to Object Part #2: Filtering and Sorting

In this article, I am going to show you how we can achieve filtering and sorting using LINQ to object.

Author Rank :
Page Views : 9778
Downloads : 0
Rating :
 Rate it
Level : Beginner
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
 
Nevron Chart
Become a Sponsor
 Tag Cloud
 Latest Jobs
More ... 
 Latest Interview Questions
More ... 


Introduction

In this article, I am going to show you how we can achieve filtering and sorting using LINQ to object.Here is the first part

I have created two classes for explanation purposes, Student and Hostel. The Student class has details about a student and the Hostel class has details about a hostel. Both classes have the property HostelNumber in common. I will be using this property to perform join operations in later articles. Both classes are shown below.

Student.cs

namespace LINQtoOBJECT1
{
     public  class Student
    {
 
         public int HostelNumber { get; set; }
         public int RollNumber { get; set; }
         public string Name { get; set; }
         public int Section { get; set; }

    }
}


Hostel.cs

namespace LINQtoOBJECT1
{
   public class Hostel
    {
 
       public int HostelNumber { get; set; }
       public int NumberofRooms { get; set; }
    }
}


To create and obtain collections of students and hostels, I have created two static functions: GetStudents
and GetHostel .

Function to return collection of students

static List<Student> GetStudents()
        {
            List<Student> students = new List<Student>
            {
                new Student() { RollNumber = 1,Name ="Alex " , Section = 1 ,HostelNumber=1 },
                new Student() { RollNumber = 2,Name ="Jonty " , Section = 2 ,HostelNumber=2 },
                new Student() { RollNumber = 3,Name ="Samba " , Section = 3 ,HostelNumber=1 },
                new Student() { RollNumber = 4,Name ="Donald " , Section = 3 ,HostelNumber=2 },
                new Student() { RollNumber = 5,Name ="Kristen " , Section = 2 ,HostelNumber=1 },
                new Student() { RollNumber = 6,Name ="Mark " , Section = 1 ,HostelNumber=2},

                new Student() { RollNumber = 8,Name ="Peterson " , Section = 2 ,HostelNumber=2 },
                new Student() { RollNumber = 9,Name ="collingwood " , Section = 3 ,HostelNumber=1 },
                new Student() { RollNumber = 10,Name ="Brian " , Section = 3 ,HostelNumber=2 }
 
            };
 
            return students;
                                   
        }


Function to return collection of hostels

static List<Hostel> GetHostel()
        {
            List<Hostel> hostels = new List<Hostel>
            {
 
                new Hostel(){HostelNumber=1 ,NumberofRooms = 100},
                new Hostel(){HostelNumber= 2 ,NumberofRooms = 200}
            };
            return hostels;
        }


Now have a look at both code fragments below.  One is using LINQ and the other is using a loop to retrieve and print data from the list.

Note: I will be using the two classes(Student and Hostel) and corresponding functions(GetStudents and GetHostel) for my entire sample below.

Filtering in LINQ

image1.gif

In the code below, I am filtering the result. I am only fetching details from the student with RollNumber = 1.

List<Student> lstStudents = GetStudents();
   Student student = (from r in lstStudents where r.RollNumber == 1 select r).First();           
  Console.WriteLine(student.Name + student.RollNumber  + student.HostelNumber + student.Section);

If you examine the LINQ query closely, I am using the First extension method in order to return a single Student. Without the First extension, the default return type for a LINQ query is IEnumerable. If I modify the LINQ statement above by removing the First extension,

Student student = (from r in lstStudents where r.RollNumber == 1 select r);

At compile time we can expect the error shown below:

image2.gif

When we run the code containing the First extension above, we get the following output:

Output

image3.gif

Let's say I want to retrieve the names of all the students whose roll number is more than 3 and who resides in hostel number 2.  We can alter our LINQ query where clause to include these conditions:

List<Student> lstStudents = GetStudents();
IEnumerable<string> lstStudentName = from r in lstStudents where r.RollNumber > 3 &&                 
r.HostelNumber== 2 select r.Name ;
foreach (string name in lstStudentName)
Console.WriteLine(name);

In above LINQ query, I am applying both filtering and projection.  The filter is the condition in the where clause that produces a subset of my initial student collection lstStudents.  Projection is the select clause which maps the result set of students to the result set of student names.

Output

image4.gif

Intermediate values

If I want to have intermediate values in my LINQ query then we introduce the LET clause into action. The LET clause helps us to reduce redundancy in the WHERE clause by allowing us to substitute a variable for an element of the LINQ statement.

IEnumerable<string> lstStudentName = from r in lstStudents let condition = r.RollNumber  where condition > 3 && r.HostelNumber== 2 select r.Name ;

The Let clause can have even more complex statements than the simple example shown above, making our LINQ query more readable.

Sorting in LINQ

The OrderBy clause is used for purpose of sorting in LINQ.  Let's examine an example of using OrderBy in our LINQ query:
 

Sorting a single property

The OrderBy clause is used directly before the where clause in order to sort the query result. In the LINQ code shown below, the name of the students will be displayed alphabetically in ascending order.

List<Student> lstStudents = GetStudents();
             IEnumerable<string> lstStudentName = from r in lstStudents let condition = r.RollNumber orderby r.Name  where condition > 3 && r.HostelNumber== 2 select r.Name ;
             foreach (string name in lstStudentName)
             Console.WriteLine(name);


Output

image5.gif

Sorting multiple properties

By putting commas between properties of a student in the OrderBy clause, we can achieve primary and secondary sorting. Sorting will be done left to right. Because I want to sort the roll number property in descending order, I'll use the descending keyword in my LINQ statement.  Sorting is performed in ascending order by default.

             List<Student> lstStudents = GetStudents();
             IEnumerable<Student> lstStudentName = from r in lstStudents let condition = r.RollNumber orderby r.Name,r.RollNumber descending   where condition > 3 && r.HostelNumber== 2 select r ;
             foreach (Student  name in lstStudentName)
             Console.WriteLine(name.RollNumber + name.Name);


image6.gif

Conclusion

In the next article on this topic, I will explain Grouping using LINQ. I hope this article was useful to you in helping you understand some of the features of LINQ technology. Thanks for reading!

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.
Login to add your contents and source code to this article
 [Top] Rate this article
 
 About the author
 
Dhananjay Kumar
Dhananjay Kumar is a developer who blogs at http://debugmode.net/. He is Microsoft MVP ,Telerik MVP and Mindcracker MVP. You can follow him on twitter  @debug_mode
Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Discover the Top 5 .NET Memory Management Fundamentals
To write the best .NET code, you need to know exactly how the .NET framework really manages memory. Ricky Leeks presents the Top 5 fundamental facts of .NET memory management. Learn more.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
 
 Post a Feedback, Comment, or Question about this article
Subject:
Comment:
Discover the top 5 tips for understanding .NET Interop
Become a Sponsor
 Comments
Thanks by Mostafa On November 9, 2010
Very Good ,Thanks
Reply | Email | Modify 
Thanks by Quang On February 15, 2011
That's great!
Reply | Email | Modify 

 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.