how to query using linq and where condition with a string in c# code example
Example: linq query select where c#
var queryLondonCustomers = from cust in customers
where cust.City == "London"
select cust;