Skip to content

Instantly share code, notes, and snippets.

@Wind010
Last active March 8, 2020 02:22
Show Gist options
  • Save Wind010/7fdeda553d05630696a83e1db86b4474 to your computer and use it in GitHub Desktop.
Save Wind010/7fdeda553d05630696a83e1db86b4474 to your computer and use it in GitHub Desktop.
Enums serialized as strings for ASP.NET Core 3.1 using System.Text.Json.Serialization
using System.Text.Json.Serialization
public void ConfigureServices(IServiceCollection services)
{
services.AddControllers().AddJsonOptions(opts =>
opts.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter()));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment