top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

LINQ to Objects Query against a Collection of Objects?

0 votes
377 views
LINQ to Objects Query against a Collection of Objects?
posted May 18, 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 ACSample
{
    class Program
    {
        static void Main(string[] args)
        {
            // A Simple LINQ to Objects Query Against a Collection of Objects

            List<Employee> employees = new List<Employee>()
            {
                new Employee { Name = "Marc" , Designation= "Architect"},
                new Employee { Name = "Martin" , Designation = "Admin"}
            };
            var Data = from m in employees
                       where m.Name == "Martin"
                       select m;
            foreach (var employee in Data)
                Console.WriteLine(employee.Name);
            Console.ReadLine();
        }
    }
    public class Employee
    {
        public string Name { get; set; }
        public string Designation { get; set; }
    }
}
answer May 18, 2016 by Shivaranjini
...