top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to Apply LINQ Distinct on a particular property in C#?

0 votes
245 views
How to Apply LINQ Distinct on a particular property in C#?
posted May 17, 2016 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace AbundantcodeConsole
{

    class Program
    {
        static void Main(string[] args)
        {
            //How to App LINQ Distinct on a particular property in C# ? 
            List emps = new List();
            emps.Add(new Employee { Name = "Martin", Designation = "ACEngineer" });
            emps.Add(new Employee { Name = "Mike", Designation = "ACSeniorEngineer" });
            emps.Add(new Employee { Name = "Peter", Designation = "ACEngineer" });
            emps.Add(new Employee { Name = "Mark", Designation = "ACEngineer" });
            var employeeData = (from p in emps
                                group p by new { p.Designation }
                                    into distinctDesignationGroup
                                    select distinctDesignationGroup.First());

            foreach (var data in employeeData)
                Console.WriteLine(data.Name + " , " + data.Designation);
            Console.ReadLine();
        }
    }

    public class Employee
    {
        public string Name { get; set; }
        public string Designation { get; set; }
    }
}
answer May 17, 2016 by Shivaranjini
...