Turning off camelCasing, PascalCasing in JSON response from ASP.NET Core 3.1 API
In ASP.NET Core 3.1 api the default json response formatting is camelCase. When you have a model in this way public class EmployeeModel { [Key] public int Id { get; set; } public string FirstName { get; set; } } private static readonly List myEmployeeModel = new List { new EmployeeModel {Id = 1, FirstName