Exemple #1
0
        //3. Write a method that finds all customers who have orders made in 1997 and shipped to Canada.
        private static IList<Customer> GetCustomerByOrder(int orderYear, string country)
        {
            using (var db = new NorthwindEntities())
            {
                var customers = db.Customers.
                    Join(db.Orders, c => c.CustomerID, o => o.CustomerID, (c, o) => new
                    {
                        Customer = c,
                        OrderYear = o.OrderDate.Value.Year,
                        OrderCountry = o.ShipCountry
                    })
                    .Where(r => r.OrderYear == orderYear && r.OrderCountry == country)
                    .Select(c => c.Customer)
                    .Distinct()
                    .ToList();

                //v2
                var customers2 = db.Customers
                    .Where(c => db.Orders
                        .Where(o => o.CustomerID == c.CustomerID && o.ShipCountry == country && o.OrderDate.Value.Year == orderYear)
                        .Any())
                        .ToList();

                return customers2;
                // return customers;
            }
        }
Exemple #2
0
        //4.  Implement previous by using native SQL query and executing it through the DbContext.
        private static IEnumerable<Customer> GetCustomerBySQL(int orderYear, string country)
        {
            using (var db = new NorthwindEntities())
            {
                string queryString = "SELECT * FROM Customers c " +
                        "WHERE c.CustomerID IN " +
                        "(SELECT o.CustomerID FROM Orders o " +
                        "WHERE DATEPART(YEAR, o.OrderDate)={0} AND o.ShipCountry={1})";
                object[] parameters = { orderYear, country };
                var customers = db.Database.SqlQuery<Customer>(string.Format(queryString, parameters));

                return customers;
            }
        }