RavenDB.NET Aspire integration
.NET Aspire is a framework for building cloud-ready distributed systems in .NET. It allows you to orchestrate your application along with all its dependencies, such as databases, observability tools, messaging, and more.
RavenDB now has full support for .NET Aspire. You can read the full details in this article, but here is a sneak peek.
Defining RavenDB deployment as part of your host definition:
using Projects;
var builder = DistributedApplication.CreateBuilder(args);
var serverResource = builder.AddRavenDB(name: "ravenServerResource");
var databaseResource = serverResource.AddDatabase(
name: "ravenDatabaseResource",
databaseName: "myDatabase");
builder.AddProject<RavenDBAspireExample_ApiService>("RavenApiService")
.WithReference(databaseResource)
.WaitFor(databaseResource);
builder.Build().Run();
And then making use of that in the API projects:
var builder = WebApplication.CreateBuilder(args);
builder.AddServiceDefaults();
builder.AddRavenDBClient(connectionName: "ravenDatabaseResource", configureSettings: settings =>
{
settings.CreateDatabase = true;
settings.DatabaseName = "myDatabase";
});
var app = builder.Build();
// here we’ll add some API endpoints shortly…
app.Run();
You can read all the details here. The idea is to make it easier & simpler for you to deploy RavenDB-based systems.
More posts in "RavenDB" series:
- (02 Apr 2025) .NET Aspire integration
- (25 Feb 2022) Domain Modeling and Data Persistency
- (07 Feb 2022) Practical Considerations for ACID/MVCC Storage Engines
- (21 Nov 2013) The Road to Release
- (26 Mar 2012) Self optimizing Ids
- (27 Feb 2012) It was the weekend before the wedding…
- (17 Feb 2012) Index Boosting
- (12 Sep 2011) Multi Maps / Reduce indexes
- (24 Apr 2011) Let us write our own JSON Parser, NOT
- (17 Apr 2011) Safe by default design – it works!
- (29 Sep 2010) Splitting entities across several documents
- (22 Sep 2010) Replicating to a relational database
- (12 Aug 2010) Includes
Comments
Comment preview
Join the conversation...