473,387 Members | 1,540 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Distinct rows from DataSet using LINQ

Hi all,

I am having some problems using LINQ to access Distinct records from a Dataset. I have looked around and believe it should be as simple as added
Expand|Select|Wrap|Line Numbers
  1. .Distinct()
to my LINQ query below, though intellisense doesn't even give that option!

My DataSet has multiple tables, all populated with data. I have a table called DemographicCriteria which has the fields listed below.
  • CriteriaID
  • DemographicCode
  • InputID
  • ExpressionID
  • Value

CriteriaID is an autonumber, InputID and ExpressionID are foreign keys from other tables. What I am trying to do is get the distinct DemographicCodes from this table.

I am using the following code:

Expand|Select|Wrap|Line Numbers
  1. DataAccess.RawDataDS ds = DataAccess.RawDataDSManagement.RawData;
  2. DataTable demoCriteria = ds.Tables["DemographicCriteria"];
  3.  
  4. IEnumerable<DataRow> query =
  5.                 (from row in demoCriteria.AsEnumerable()
  6.                  select row.Field<string>("DemographicCode"));
  7.  
  8. foreach (DataRow row in query)
  9. {
  10.     Console.WriteLine(row.Field<string>("DemographicCode"));
  11. }
RawDataDSManagement is my main class for accessing the DataSet and I know that this is retrieving the data correctly as I have tied a DataGridView to this to check. The rest of it doesn't seem to be working though!

Does anyone have any ideas?
Jan 29 '08 #1
4 29926
Plater
7,872 Expert 4TB
I am unfamiliar with LINQ, but in SQL you use "SELECT DISTINCT" instead of "SELECT" (you have to know what you are "distincting" though, and sometimes you do not get what you thought because you are selecting too many columns...that will probably make more sense once you try it out some)

Try changing:
Expand|Select|Wrap|Line Numbers
  1. IEnumerable<DataRow> query =
  2.                 (from row in demoCriteria.AsEnumerable()
  3.                  select row.Field<string>("DemographicCode"));
  4.  
to maybe:
Expand|Select|Wrap|Line Numbers
  1. IEnumerable<DataRow> query =
  2.                 (from row in demoCriteria.AsEnumerable()
  3.                  select distinct row.Field<string>("DemographicCode"));
  4.  
?
Jan 29 '08 #2
I am unfamiliar with LINQ, but in SQL you use "SELECT DISTINCT" instead of "SELECT" (you have to know what you are "distincting" though, and sometimes you do not get what you thought because you are selecting too many columns...that will probably make more sense once you try it out some)

Try changing:
Expand|Select|Wrap|Line Numbers
  1. IEnumerable<DataRow> query =
  2.                 (from row in demoCriteria.AsEnumerable()
  3.                  select row.Field<string>("DemographicCode"));
  4.  
to maybe:
Expand|Select|Wrap|Line Numbers
  1. IEnumerable<DataRow> query =
  2.                 (from row in demoCriteria.AsEnumerable()
  3.                  select distinct row.Field<string>("DemographicCode"));
  4.  
?
Thanks for your quick response. I have tried that though C# doesn't seem to accept distinct as a keyword and throws a compile time error.
Jan 29 '08 #3
Solution

It was actually a silly mistake on my part (though didn't find reference to it anywhere!). I forgot a using statement, in the end code looked like below.

Expand|Select|Wrap|Line Numbers
  1. using System.Linq;
  2.  
  3. DataAccess.RawDataDS ds = DataAccess.RawDataDSManagement.RawData;
  4. DataTable demoCriteria = ds.Tables["DemographicCriteria"];
  5.  
  6. IEnumerable<string> query = (from row in demoCriteria.AsEnumerable()
  7.              select row.Field<string>("DemographicCode")).Distinct();
  8.  
  9. foreach (string row in query)
  10. {
  11.     Console.WriteLine(row);
  12. }
Obviously you replace the code in the foreach loop with something that does something useful!

Thanks for your help anyway guys!
Jan 29 '08 #4
Are you able to return more than one column w/ that query? I'm using about the same query... tring to figure out how to return three columns and put the distinct operator on one of them... any ideas?
Feb 27 '08 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: Alex Satrapa | last post by:
I have a table from which I'm trying to extract certain information. For historical reasons, we archive every action on a particular thing ('thing' is identified, funnily enough, by 'id'). So the...
2
by: Michael Howes | last post by:
I have a single DataTable in a DataSet. It has 4 columns and i'd like to get a handful of counts of unique items in 3 of the 4 columns. Can a DataTables Select or Compute methods to COUNT DISTINCT?...
3
by: Li Pang | last post by:
Hi, I want to know how to create a dataview from a datatable of DISTINCT data. Thank in advance
5
by: Mike9900 | last post by:
Hello, I have this data in a DataSet: Year Account Amount 1995 1 999 1995 2 323 1995 3 321 1996 1 354
4
by: =?Utf-8?B?V2lsc29uIEMuSy4gTmc=?= | last post by:
Hi Experts, I am doing a prototype of providing data access (read, write & search) through Web Service. We observed that the data storing in SQL Server 2005, the memory size is always within...
1
by: Frederik | last post by:
Hi all, Am I correct when stating that LINQ replaces somewhat DataTables? I have done some reading concerning LINQ, but I'm still puzzled as to whether I should use LINQ or not. My application...
2
by: rds80 | last post by:
In the xml document below, I would like to retrieve the distinct attributes for the element '<Bal>'. However, I haven't had any success. Here is what I have so far: <TRANS> <TRAN...
2
by: Andy B | last post by:
How would you find out if a linq table has 0 rows in it? I have this code: NewsContext.V_News() '*** linq table to be tested for 0 rows Any ideas?
1
by: Sergey Topychkanov | last post by:
I have SQL SERVER 2008 Express and C# Express 2008 - both sp1. I can remove and update data in my database only thru direct SQL query thru database explorer, but quite unable to do it through...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.