⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠

Text Elements

IQueryable customers = db.GetTable(); ^OOD4P9iH

IQueryable custNameQuery = from cust in customers where cust.City == “London” select cust.Name; ^yyjpOuVq

foreach (string str in custNameQuery) { Console.WriteLine(str); }

1

2

3