コード例 #1
0
        public async Task <IActionResult> Create([Bind("ID,PlacedInCart,Quantity,UnitPrice,Shipping,CheckedOut")] OrderDetail orderDetail)
        {
            if (ModelState.IsValid)
            {
                _context.Add(orderDetail);
                await _context.SaveChangesAsync();

                return(RedirectToAction("Index"));
            }
            return(View(orderDetail));
        }
コード例 #2
0
        public async Task <IActionResult> Create([Bind("ID,Recipient,Address1,Address2,City,State,Zip,Country,Phone")] Address address)
        {
            if (ModelState.IsValid)
            {
                _context.Add(address);
                await _context.SaveChangesAsync();

                return(RedirectToAction("Index"));
            }
            return(View(address));
        }
コード例 #3
0
        public async Task <IActionResult> Create([Bind("ID,Name,Registered,LastVisited,TimesVisited,EmailAddress")] Customer customer)
        {
            if (ModelState.IsValid)
            {
                _context.Add(customer);
                await _context.SaveChangesAsync();

                return(RedirectToAction("Index"));
            }
            return(View(customer));
        }
コード例 #4
0
        public async Task <IActionResult> Create([Bind("ID,DateOrdered,Subtotal,Shipping,Total")] Order order)
        {
            if (ModelState.IsValid)
            {
                _context.Add(order);
                await _context.SaveChangesAsync();

                return(RedirectToAction("Index"));
            }
            return(View(order));
        }
コード例 #5
0
        public async Task <IActionResult> Create([Bind("ID,Name,Description,Price,Shipping,ImageUpload,Category")] ViewModels.ProductVM product)
        {
            // validate image upload
            if (product.ImageUpload == null || product.ImageUpload.Length == 0)
            {
                ModelState.AddModelError("ImageUpload", "This field is required");
            }
            else if (!validImageTypes.Contains(product.ImageUpload.ContentType))
            {
                ModelState.AddModelError("ImageUpload", "Please choose either a GIF, JPG or PNG image.");
            }

            if (ModelState.IsValid)
            {
                // Copy ViewModel info to Model
                var newProduct = new Product()
                {
                    ID          = product.ID,
                    Name        = product.Name,
                    Description = product.Description,
                    Price       = product.Price,
                    Shipping    = product.Shipping,
                    Category    = product.Category
                };

                // Save image to disk and store filepath in model
                if (product.ImageUpload != null && product.ImageUpload.Length != 0)
                {
                    var imageDir  = "/images";
                    var imagePath = Path.Combine(_env.WebRootPath, "images", product.ImageUpload.FileName);
                    //var imageUrl = Path.Combine(imageDir, product.ImageUpload.FileName);
                    var imageUrl = imageDir + "/" + product.ImageUpload.FileName;
                    product.ImageUpload.CopyTo(new FileStream(imagePath, FileMode.Create));
                    newProduct.ImageURL = imageUrl;
                }

                _context.Add(newProduct);
                await _context.SaveChangesAsync();

                return(RedirectToAction("Index"));
            }
            return(View(product));
        }