Skip to content

Instantly share code, notes, and snippets.

@maximgorbatyuk
Created March 4, 2021 09:45
Show Gist options
  • Save maximgorbatyuk/e9c0f2f86d382c8f398514e36406b40d to your computer and use it in GitHub Desktop.
Save maximgorbatyuk/e9c0f2f86d382c8f398514e36406b40d to your computer and use it in GitHub Desktop.
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
// ...
services
.AddMvc()
.AddJsonOptions(x =>
{
x.JsonSerializerOptions.PropertyNamingPolicy = new SnakeCaseNamingPolicy();
});
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment