Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have used below linq query to join some table to get accurate data..

(from row in
  (from c in DbContext.Customer
   join cd in DbContext.CustomerDetails
   on c.Customer_Id equals cd.CustomerDetail_CustomerId
   join cp in DbContext.ProductPurchases
   on cd.CustomerDetail_OrgID equals cp.ProductPurchase_OrgID
   where cd.CustomerDetail_OrgId == OrganizationID --organization Id is common
   && c.Customer_Org_Id == OrganizationID
   && cp.ProductPurchase_OrgID == OrganizationID
   orderby cd.CustomerDetail_CreatedDate descending
   select new { c, cd, cp })
   select new CustomerDTO
   {
      CustomerId = row.cpd.CustomerDetail_CustomerID,
      CustomerName = row.c.Customer_LastName+", "+row.c.Customer_FirstName,
   }).ToList();

i have a small problem in CustomerDetail records i only want to get distinct records from the CustomerDetail based on the CustomerId....

CustomerDetail can have more than one records for the same CustomerId

please suggest how i can filter my query to get only distinct records from the CustomerDetail table

thanks,

share|improve this question

4 Answers

up vote 2 down vote accepted

LINQ provides the Distinct method. However, it uses the default equality comparer by default, or optionally one you specified.

I would recommend instead of using an anonymous type, define a class with the properties CustomerId and CustomerName, then override Equals.

public class DistinctCustomer
{
   public int CustomerId { get; set; }
   public string CustomerName { get; set; }

   public override bool Equals(object obj)
   {
        if (ReferenceEquals(obj, null)) return false;
        if (ReferenceEquals(this, obj)) return true;

        var other = obj as DistinctCustomer;

        if (other == null) return false;

        return CustomerId == other.CustomerId;
   }

   public override int GetHashCode()
   {
        return CustomerId.GetHashCode();
   }
}

and then

(from row in
  (from c in DbContext.Customer
   join cd in DbContext.CustomerDetails
   on c.Customer_Id equals cd.CustomerDetail_CustomerId
   join cp in DbContext.ProductPurchases
   on cd.CustomerDetail_OrgID equals cp.ProductPurchase_OrgID
   where cd.CustomerDetail_OrgId == OrganizationID --organization Id is common
   && c.Customer_Org_Id == OrganizationID
   && cp.ProductPurchase_OrgID == OrganizationID
   orderby cd.CustomerDetail_CreatedDate descending
   select new { c, cd, cp })
   select new DistinctCustomer
   {
      CustomerId = row.cpd.CustomerDetail_CustomerID,
      CustomerName = row.c.Customer_LastName+", "+row.c.Customer_FirstName,
   }).Distinct().ToList();
share|improve this answer
True, this will be required only if the same customer id, has more than one LastName/FirstName. Otherwise anonymous types equals suffice in ensuring all properties are equal – M Afifi May 22 '12 at 5:51
Right, and he specifically stated he wants to check distinct only on CustomerId – HackedByChinese May 22 '12 at 5:54
hi thanks for ur comment i have already defined a class which have both the properties as you have mentioned.....it CustomerDTO – aamankhaan May 22 '12 at 5:55
3  
Or, create an IEqualityComparer<CustomerDTO> which will allow you to confine the 'equality by customer id' to this scenario specifically. – RJ Lohan May 22 '12 at 5:55
Yeah, in this particular case it might make sense to use a custom IEqualityComparer, since this method of determining equality might only be relevant to this query. – HackedByChinese May 22 '12 at 5:59
show 2 more comments

You can implement a comparer class for your CustomerDetail(s)-Objects and then use the overloaded version, which accepts your comparer.

Something like this:

class CustomerDetailsComparer: IEqualityComparer<CustomerDetail>
{
    public bool Equals(CustomerDetail x, CustomerDetail y)
    {

        if (Object.ReferenceEquals(x, y)) return true;

        if (Object.ReferenceEquals(x, null) || Object.ReferenceEquals(y, null))
            return false;

        return x.CustomerId == y.CustomerId;
    }


    public int GetHashCode(CustomerDetail cd)  
    {
         // Do something here
    }  
}


// ...

DbContext.CustomerDetails.Distinct(new CustomerDetailsComparer());
share|improve this answer

Just use .Distinct() before .ToList() I.e.

(from row in
  (from c in DbContext.Customer
   join cd in DbContext.CustomerDetails
   on c.Customer_Id equals cd.CustomerDetail_CustomerId
   join cp in DbContext.ProductPurchases
   on cd.CustomerDetail_OrgID equals cp.ProductPurchase_OrgID
   where cd.CustomerDetail_OrgId == OrganizationID --organization Id is common
   && c.Customer_Org_Id == OrganizationID
   && cp.ProductPurchase_OrgID == OrganizationID
   orderby cd.CustomerDetail_CreatedDate descending
   select new { c, cd, cp })
   select new 
   {
      CustomerId = row.cpd.CustomerDetail_CustomerID,
      CustomerName = row.c.Customer_LastName+", "+row.c.Customer_FirstName,
   }).Distinct().ToList();
share|improve this answer
That will find Distinct objects, not Distinct by a particular field. – RJ Lohan May 22 '12 at 5:54
hello @RJLohan i have made the changes according to answer specified above but still the same problem....it is not taking the distinct value – aamankhaan May 22 '12 at 5:59

Try:

(--your code--).Distinct().ToList();
share|improve this answer
ToLost -> seems like typo – Tilak May 22 '12 at 5:53
thanks for u r help. – The Indian Programmmer May 22 '12 at 7:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.