Below is a sample code snippet that demonstrates how to use the LINQ Query to query against the LINQ to Objects.
LINQ to Objects Query against a Collection of Objects
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; } } }
Leave a Reply