List of elements in a model in .net core – Asp.net
I am trying to understand how models work in .net core and I run into the following problem: I have a model called blog: public class Blog { [Key] public int Id { get; set; } [Required(ErrorMessage = "Title is…