예제 #1
0
 public HomeController(HerhalingContext context)
 {
     _herhalingContext = context;
     _herhalingContext.Set <User>()
     .Include(u => u.UserProducts)
     .ThenInclude(up => up.ProductInfo);
 }
 public LoginController(HerhalingContext context)
 {
     _herhalingContext = context;
 }
예제 #3
0
 public UsersController(HerhalingContext context)
 {
     _context = context;
 }
 public ProductsController(HerhalingContext context)
 {
     _context = context;
 }