473,408 Members | 2,442 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,408 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 29931
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
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.