Plug-n-play implementation of IResourceRepository<TResource, TId>
allowing you to use MongoDB with your JsonApiDotNetCore APIs.
dotnet add package JsonApiDotNetCore.MongoDb
#nullable enable
[Resource]
public class Book : HexStringMongoIdentifiable
{
[Attr]
public string Name { get; set; } = null!;
}
// Program.cs
#nullable enable
WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddSingleton<IMongoDatabase>(_ =>
{
var client = new MongoClient("mongodb://localhost:27017");
return client.GetDatabase("ExampleDbName");
});
builder.Services.AddJsonApi(resources: resourceGraphBuilder =>
{
resourceGraphBuilder.Add<Book, string?>();
});
builder.Services.AddJsonApiMongoDb();
builder.Services.AddResourceRepository<MongoRepository<Book, string?>>();
// Configure the HTTP request pipeline.
app.UseRouting();
app.UseJsonApi();
app.MapControllers();
app.Run();
Note: If your API project uses MongoDB only (so not in combination with EF Core), then instead of registering all MongoDB resources and repositories individually, you can use:
builder.Services.AddJsonApi(facade => facade.AddCurrentAssembly());
builder.Services.AddJsonApiMongoDb();
builder.Services.AddScoped(typeof(IResourceReadRepository<,>), typeof(MongoRepository<,>));
builder.Services.AddScoped(typeof(IResourceWriteRepository<,>), typeof(MongoRepository<,>));
builder.Services.AddScoped(typeof(IResourceRepository<,>), typeof(MongoRepository<,>));
Resources that inherit from HexStringMongoIdentifiable
use auto-generated (performant) 12-byte hexadecimal
Object IDs.
You can assign an ID manually, but it must match the 12-byte hexadecimal pattern.
To assign free-format string IDs manually, make your resources inherit from FreeStringMongoIdentifiable
instead.
When creating a resource without assigning an ID, a 12-byte hexadecimal ID will be auto-generated.
Set options.AllowClientGeneratedIds
to true
in Program.cs to allow API clients to assign IDs. This can be combined
with both base classes, but FreeStringMongoIdentifiable
probably makes the most sense.
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:
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:
:warning: If the above command doesn't give you access in the next step, remove the package source by running:
dotnet nuget remove source github-json-api
and retry with the --store-password-in-clear-text
switch added.
To build the code from this repository locally, run:
dotnet build
You don't need to have a running instance of MongoDB on your machine to run tests. Just type the following command in your terminal:
dotnet test
If you want to run the examples and explore them on your own you are going to need that running instance of MongoDB. If you have docker installed you can launch it like this:
pwsh run-docker-mongodb.ps1
And then to run the API:
dotnet run --project src/Examples/GettingStarted
Alternatively, to build, run all tests, generate code coverage and NuGet packages:
pwsh Build.ps1