Web developer uses in this case the simplest form of LINQ – LINQ to Objects. Let for example Web developer has some sort of data class, like the Clients class shown next:
public class Client
{
public int ClientID { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }