json property becoming small after retriving from .net core controller code example
Example: json property becoming small after retriving from .net core controller
public void ConfigureServices
(IServiceCollection services)
{
services.AddControllers()
.AddJsonOptions(options =>
{
options.JsonSerializerOptions
.PropertyNamingPolicy = null;
});
}