A framework for building json:api compliant web servers. It allows you to eliminate a significant amount of boilerplate while offering out-of-the-box features such as sorting, filtering and pagination. This library provides all the required middleware to build a complete server. All you need to focus on is defining the resources and implementing your custom business logic. This library has been designed around dependency injection making extensibility incredibly easy.
See the documentation here
Branch feat/core-2
is where I am working on .Net Core 2 compatibility tests and package upgrades. There are several blockers to be aware of:
- Microsoft.AspNetCore.* packages target the runtime (netcoreapp) instead of netstandard. This will be fixed in future versions.
- EF bug against netcoreapp2.0 runtime (EntityFramework#8021)
- Can't run acceptance testing against postgres on preview runtime pgsql.EntityFrameworkCore.PostgreSQL#171