builder.Services.AddControllersWithViews()
.AddJsonOptions(options =>
{
options.JsonSerializerOptions.PropertyNameCaseInse nsitive = true;
options.JsonSerializerOptions.PropertyNamingPolicy = null;
});


builder.Services.AddControllersWithViews().AddNewt onsoftJson(options => { options.SerializerSettings.NullValueHandling = NullValueHandling.Ignore; });