RavenDB.NET Aspire integration

time to read 2 min | 373 words

.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:

  1. (02 Apr 2025) .NET Aspire integration
  2. (25 Feb 2022) Domain Modeling and Data Persistency
  3. (07 Feb 2022) Practical Considerations for ACID/MVCC Storage Engines
  4. (21 Nov 2013) The Road to Release
  5. (26 Mar 2012) Self optimizing Ids
  6. (27 Feb 2012) It was the weekend before the wedding…
  7. (17 Feb 2012) Index Boosting
  8. (12 Sep 2011) Multi Maps / Reduce indexes
  9. (24 Apr 2011) Let us write our own JSON Parser, NOT
  10. (17 Apr 2011) Safe by default design – it works!
  11. (29 Sep 2010) Splitting entities across several documents
  12. (22 Sep 2010) Replicating to a relational database
  13. (12 Aug 2010) Includes