Is it possible to use an "and" in LINQ i.e:
var londonCustomers = from customer in Customers
where customer.City == "London"
and customer.Credit CardType="Visa"
select customer;
if yes/no how do I achieve this?
var londonCustomers = from customer in Customers
where customer.City == "London"
and customer.Credit CardType="Visa"
select customer;
if yes/no how do I achieve this?
Comment