A framework for building JSON:API compliant REST APIs using .NET Core and Entity Framework Core. Includes support for Atomic Operations.
The ultimate goal of this library is to eliminate as much boilerplate as possible by offering out-of-the-box features such as sorting, filtering and pagination. You just need to focus on defining the resources and implementing your custom business logic. This library has been designed around dependency injection, making extensibility incredibly easy.
These are some steps you can take to help you understand what this project is and how you can use it:
See the examples directory for up-to-date sample applications. There is also a Todo List App that includes a JsonApiDotNetCore API and an EmberJs client.
See our documentation for detailed usage.
#nullable enable
[Resource]
public class Article : Identifiable<int>
{
[Attr]
public string Name { get; set; } = null!;
}
// Program.cs
builder.Services.AddJsonApi<AppDbContext>();
// ...
app.UseRouting();
app.UseJsonApi();
app.MapControllers();
The following chart should help you pick the best version, based on your environment. See also our versioning policy.
JsonApiDotNetCore | Status | .NET | Entity Framework Core |
---|---|---|---|
3.x | Stable | Core 2.x | 2.x |
4.x | Stable | Core 3.1 | 3.1, 5 |
5 | 5 | ||
6 | 5 | ||
5.0.0-5.0.2 | Stable | 6 | 6 |
5.0.3-5.4.0 | Stable | 6 | 6, 7 |
7 | 7 | ||
5.5+ | Stable | 6 | 6, 7 |
7 | 7 | ||
8 | 8 | ||
master | Preview | 6 | 6, 7 |
7 | 7 | ||
8 | 8 | ||
openapi | Experimental | 6 | 6, 7 |
7 | 7 | ||
8 | 8 |
Have a question, found a bug or want to submit code changes? See our contributing guidelines.
After each commit to the master branch, a new pre-release NuGet package is automatically published to GitHub Packages. To try it out, follow the steps below:
Create a Personal Access Token (classic) with at least read:packages
scope.
Add our package source to your local user-specific nuget.config
file by running:
dotnet nuget add source https://nuget.pkg.github.com/json-api-dotnet/index.json --name github-json-api --username YOUR-GITHUB-USERNAME --password YOUR-PAT-CLASSIC
In the command above:
dotnet nuget remove source github-json-api
and retry with the --store-password-in-clear-text
switch added.
Restart your IDE, open your project, and browse the list of packages from the github-json-api feed (make sure pre-release packages are included).
To build the code from this repository locally, run:
dotnet build
Running tests locally requires access to a PostgreSQL database. If you have docker installed, this can be propped up via:
pwsh run-docker-postgres.ps1
And then to run the tests:
dotnet test
Alternatively, to build, run all tests, generate code coverage and NuGet packages:
pwsh Build.ps1
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。