using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; using Microsoft.AspNetCore.Mvc.Rendering; using EveryThing.Data; using EveryThing.Models; namespace EveryThing.Pages.Documents { public class CreateModel : PageModel { private readonly ApplicationDbContext _context; public CreateModel(ApplicationDbContext context) { _context = context; } public IActionResult OnGet() { ViewData["IdDocumentTypeFk"] = new SelectList(_context.DocumentTypes, "IdDocumentType", "Title"); return Page(); } [BindProperty] public Document Document { get; set; } // 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 OnPostAsync() { if (!ModelState.IsValid) { return Page(); } _context.Documents.Add(Document); await _context.SaveChangesAsync(); return RedirectToPage("./Index"); } } }