Click here to Skip to main content
15,885,278 members
Articles / Web Development / ASP.NET
Tip/Trick

Linq Except Operator to Get NonEmployee And Employee collection

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
17 Dec 2012CPOL 21.2K   5   1
This is most general collection operation that we come across daily. Its set based operation using LINQ Except Operator.

Introduction

There are two set collection of one ResourceBased Collection and other EmployeeBasedCollection. ResourceBased collection is superset and EmployeeBasedCollection is subset. Using the LINQ Except operator i will try to fetch NonEmployeeBasedCollection.


Background

Usually we carry set based operation in SQL query at database level using joins and Except operator in database. What if we got the similar case in code behind or layered architecture where we got two set collections in hand and where we don't want to involve database. In such cases generics and LINQ comes handy. This is what I tried to demonstrated below .

Using the code

The code is self explanatory.

C#
 
 
protected void Page_Load(object sender, EventArgs e)
    {
        IList<ResourceBase> li=GetJoinAAndB();
        foreach (ResourceBase Ui in li)
        
            Response.Write(Ui.ID);
        
private IList<ResourceBase> GetJoinAAndB()
    {
      List<ResourceBase> resourceBaseSet = new List<ResourceBase>();
        resourceBaseSet.Add(
new ResourceBase(1,"santosh","sanAddress"));
 
 
        resourceBaseSet.Add(
new ResourceBase(2, "santosh", "sanAddress"));
        resourceBaseSet.Add(
new ResourceBase(3, "santosh", "sanAddress"));
List<ResourceBase> employeeBasedSet = new List<ResourceBase>();
        employeeBasedSet.Add(
new ResourceBase(1, "santosh", "sanAddress"));
        employeeBasedSet.Add(
new ResourceBase(4, "santosh", "sanAddress"));
        employeeBasedSet.Add(
new ResourceBase(5, "santosh", "sanAddress"));  
var query=( from a in resourceBaseSet                          
select a ).Except                               
from b in employeeBasedSet                                
from a1 in resourceBaseSet
where b.ID == a1.ID                                
select a1 );
 
return query.ToList();
    }
public class ResourceBase
    {
public ResourceBase(int id, string name, string address)
        {
            ID = id;
            Name = name;
            Address = address;
 
        }
public int ID { get; set; }
public String Name { get; set; }
public String Address { get; set; }
    }

     





   

License

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


Written By
Technical Lead
Australia Australia
Whatsup-->Exploring--> MVC/HTML5/Javascript & Virtualization.......!
www.santoshpoojari.blogspot.com

Comments and Discussions

 
SuggestionA lot of linq when a simple IEqualityComparer would have done Pin
Robert Slaney18-Dec-12 9:16
Robert Slaney18-Dec-12 9:16 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.