Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Linq Except Operator to Get NonEmployee And Employee collection

5.00/5 (1 vote)
17 Dec 2012CPOL 21.6K  
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)