Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NorthwindEntities context = new NorthwindEntities();
- IEnumerable<Order> orders = context.Orders.Where((c) => c.OrderDate.Value.Year == 1997 && c.ShipCountry == "Canada");
- return orders.Select((c) => c.Customer);
Advertisement
Add Comment
Please, Sign In to add comment