コード例 #1
0
        // To protect from overposting attacks, please enable the specific properties you want to bind to, for
        // more details see https://aka.ms/RazorPagesCRUD.
        public async Task <IActionResult> OnPostAsync()
        {
            if (!ModelState.IsValid)
            {
                return(Page());
            }

            _context.Attach(Vessel).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!VesselExists(Vessel.ID))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            // Возврат к просмотру головоломки
            return(RedirectToPage("/Puzzles/Details", new { id = Vessel.PuzzleID }));
        }
コード例 #2
0
        // To protect from overposting attacks, please enable the specific properties you want to bind to, for
        // more details see https://aka.ms/RazorPagesCRUD.
        public async Task <IActionResult> OnPostAsync()
        {
            if (!ModelState.IsValid)
            {
                return(Page());
            }

            _context.Attach(StateOfVessel).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!StateOfVesselExists(StateOfVessel.ID))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(RedirectToPage("./Index"));
        }
コード例 #3
0
        // To protect from overposting attacks, please enable the specific properties you want to bind to, for
        // more details see https://aka.ms/RazorPagesCRUD.
        public async Task <IActionResult> OnPostAsync()
        {
            if (!ModelState.IsValid)
            {
                return(Page());
            }

            _context.StatesOfVessels.Add(StateOfVessel);
            await _context.SaveChangesAsync();

            return(RedirectToPage("./Index"));
        }
コード例 #4
0
ファイル: Create.cshtml.cs プロジェクト: sbannikov/csharpcroc
        // To protect from overposting attacks, please enable the specific properties you want to bind to, for
        // more details see https://aka.ms/RazorPagesCRUD.
        public async Task <IActionResult> OnPostAsync()
        {
            if (!ModelState.IsValid)
            {
                return(Page());
            }

            // Сохранение нового объекта в БД
            _context.Vessels.Add(Vessel);
            await _context.SaveChangesAsync();

            // Возврат к просмотру головоломки
            return(RedirectToPage("/Puzzles/Details", new { id = Vessel.PuzzleID }));
        }
コード例 #5
0
ファイル: Delete.cshtml.cs プロジェクト: sbannikov/csharpcroc
        public async Task <IActionResult> OnPostAsync(Guid?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            StateOfVessel = await _context.StatesOfVessels.FindAsync(id);

            if (StateOfVessel != null)
            {
                _context.StatesOfVessels.Remove(StateOfVessel);
                await _context.SaveChangesAsync();
            }

            return(RedirectToPage("./Index"));
        }
コード例 #6
0
ファイル: Delete.cshtml.cs プロジェクト: sbannikov/csharpcroc
        public async Task <IActionResult> OnPostAsync(Guid?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            Puzzle = await _context.Puzzles.FindAsync(id);

            if (Puzzle != null)
            {
                _context.Puzzles.Remove(Puzzle);
                await _context.SaveChangesAsync();
            }

            return(RedirectToPage("./Index"));
        }
コード例 #7
0
ファイル: Delete.cshtml.cs プロジェクト: sbannikov/csharpcroc
        public async Task <IActionResult> OnPostAsync(Guid?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            Vessel = await _context.Vessels.FindAsync(id);

            // Сохранить идентификатор головоломки
            Guid?puzzleid = Vessel.PuzzleID;

            if (Vessel != null)
            {
                _context.Vessels.Remove(Vessel);
                await _context.SaveChangesAsync();
            }

            // Возврат к просмотру головоломки
            return(RedirectToPage("/Puzzles/Details", new { id = puzzleid }));
        }