I am trying to get distinct rows based on multiple columns (attribute1_name, attribute2_name) and get datarows from datatable using Linq-to-Dataset.

alt text

I want results like this

attribute1_name    attribute2_name
--------------     ---------------

Age                State
Age                weekend_percent
Age                statebreaklaw
Age                Annual Sales
Age                Assortment

How to do thin Linq-to-dataset?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

If it's not a typed dataset, then you probably want to do something like this, using the Linq-to-DataSet extension methods:

var distinctValues = dsValues.AsEnumerable()
                        .Select(row => new {
                            attribute1_name = row.Field<string>("attribute1_name"),
                            attribute2_name = row.Field<string>("attribute2_name")
                         })
                        .Distinct();

Make sure you have a using System.Data; statement at the beginning of your code in order to enable the Linq-to-Dataset extension methods.

Hope this helps!

link|improve this answer
I used attribute1_name there I am getting duplicate records – James123 Jul 14 '10 at 2:56
feedback

Like this: (Assuming a typed dataset)

someTable.Select(r => new { r.attribute1_name, r.attribute2_name }).Distinct();
link|improve this answer
Don't you still need the call to AsEnumerable()? – Justin Niessner Jul 14 '10 at 2:09
@Justin: Not for a typed dataset. Tables in typed datasets inherit TypedTableBase<TRow>, which implements IEnumerable<TRow>. – SLaks Jul 14 '10 at 2:10
please provide me ... how iterate them – James123 Jul 14 '10 at 2:16
@James: foreach(var pair in ...) – SLaks Jul 14 '10 at 13:43
feedback

Check this link

get distinct rows from datatable using Linq (distinct with mulitiple columns)

Or try this

var distinctRows = (from DataRow dRow in dTable.Rows
                    select new  {  col1=dRow["dataColumn1"],col2=dRow["dataColumn2"]}).Distinct();

EDIT: Placed the missing first curly brace.

link|improve this answer
You missed a {. – SLaks Jul 14 '10 at 13:42
@SLaks -Where should the curly brace go? – MAW74656 Feb 10 at 21:23
@MAW74656: Around the anonymous type. – SLaks Feb 10 at 23:40
feedback

Your Answer

 
or
required, but never shown

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