TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
LINQ To SQL: Distinct operator
Vijai Anand Ramalingam
Jun 22, 2011
5.6
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
In this blog we will be seeing how to eliminate duplicate elements from a sequence.
EmpDetails Table:
Code:
To eliminate duplicate elements from a sequence.
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Text;
namespace
LINQ
{
class
Program
{
static
void
Main(
string
[] args)
{
DataClassesDataContext
dc =
new
DataClassesDataContext
();
IQueryable
<
String
> empQuery = (
from
emp
in
dc.EmpDetails
select
emp.Dept).Distinct();
foreach
(
String
dept
in
empQuery)
{
Console
.WriteLine(dept);
}
Console
.ReadLine();
}
}
}
Next Recommended Reading
LINQ To SQL: Max operator