using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace AspNetCoreMVC.Models { [Table("Person")] public class Person { public int Id { get; set; } public string Name { get; set; } } }