Skip to content

Instantly share code, notes, and snippets.

@Guifgr
Last active October 3, 2021 16:15
Show Gist options
  • Save Guifgr/a4589c8141219f8781188275d0ec63bc to your computer and use it in GitHub Desktop.
Save Guifgr/a4589c8141219f8781188275d0ec63bc to your computer and use it in GitHub Desktop.
AddJsonOptions .NET for enum as string
services
.AddControllers()
.AddJsonOptions(opts =>
{
var enumConverter = new JsonStringEnumConverter();
opts.JsonSerializerOptions.Converters.Add(enumConverter);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment