Guest User

Untitled

a guest
May 22nd, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. NorthwindEntities context = new NorthwindEntities();
  2.             IEnumerable<Order> orders = context.Orders.Where((c) => c.OrderDate.Value.Year == 1997 && c.ShipCountry == "Canada");
  3.             return orders.Select((c) => c.Customer);
Advertisement
Add Comment
Please, Sign In to add comment