Asp.net – How to update only fields present in a form for a model in EF Core?
To simplify the problem, in C# I have a model like this public class Person { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] [Key] [MaxLength(128)] public string? Id { get; set; } [MaxLength(256)] public string PersonName { get; set; } public short PersonAge { get; set;…