can i use this LINQ query
IEnumerable
.Include(x => x.orderdetails)
.Where(x => x.OrderID== _OrderID).ToList();
does the above code works fine? also tell me how to achieve the same with join also?
also tell me if i need to show specific customer data and customer order and order details then how i need to compose my EF query? help me with code. thanks
Tridip BhattacharjeePosted Jan 4, 2018, 9:45 AM
Nilesh ShahPosted Jan 4, 2018, 8:50 AM
Rajkiran SwainPosted Jan 4, 2018, 7:57 AM