How to select distinct values from datatable in C#?
For a retrieved data from database, I need to get its distinct value in C#?
|
|
|||||
|
|
|
Following single line of code will avoid the duplicate rows of a
Where:
The same can be done from a
|
||||
|
|||
|
|
|
With LINQ (.NET 3.5, C# 3)
|
|||
|
|
|
|||||
|
|
If by "in C#" you mean using LINQ then you can use the Distinct Operator. |
|||
|
|
|
I just happened to find this: http://support.microsoft.com/default.aspx?scid=kb;en-us;326176#1 While looking for something similar, only, specifically for .net 2.0 Im assuming the OP was looking for distinct while using DataTable.Select(). (Select() doesn't support distinct) So here is the code from the above link:
|
|||
|
|
|
Following works. I have it working for me with .NET 3.5 SP1
|
|||
|
|
|
To improve the above answer: The ToTable function on dataview has a "distinct" flag.
|
|||||
|
|
|||
|
|
|
You can use like that:
but performance will be down. try to use below code:
For Performance ; http://onerkaya.blogspot.com/2013/01/distinct-dataviewtotable-vs-linq.html |
||||
|
|
|
in C#? you should use SELECT DISTINCT(field) in your SQL |
|||
|
|
|
sthing like ? SELECT DISTINCT .... FROM table WHERE condition http://www.felixgers.de/teaching/sql/sql_distinct.html note: Homework question ? and god bless google.. |
|||
|