Skip to content

ASP.NET Core implementation of the JSON:API specification.

License

Notifications You must be signed in to change notification settings

jsonyte/jsonyte-aspnetcore

Repository files navigation

jsonyte-aspnetcore

Docs NuGet Discussions License

An ASP.NET Core implementation of the JSON:API specification using Jsonyte and System.Text.Json.

Usage

Install the package from NuGet with dotnet add package Jsonyte.AspNetCore.

For your ASP.NET Core application, simply add the following to the startup:

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services
            .AddControllers()
            .AddJsonOptions(x => x.JsonSerializerOptions.AddJsonApi());
    }
}

Documentation

See the wiki for examples and help using Jsonyte.

Get in touch

Discuss with us on Discussions, or raise an issue.

Discussions

Contributing

Please read CONTRIBUTING.md for details on how to contribute to this project.

License

Jsonyte is released under the MIT License

About

ASP.NET Core implementation of the JSON:API specification.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published