I\'m running through a WintellectNOW course on ASP.NET Core/Web API/Angular 2. I have the API portion implemented, but for whatever reason, the JSON that is being returned h
Another solution in Asp.Net.Core 2.2 as following:
services.AddMvc() .AddJsonOptions(jsonOptions => jsonOptions.UseMemberCasing()) .SetCompatibilityVersion(CompatibilityVersion.Version_2_2);