CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder 9.2.1-beta.205

Prefix Reserved
This is a prerelease version of CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder --version 9.2.1-beta.205                
NuGet\Install-Package CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder -Version 9.2.1-beta.205                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder" Version="9.2.1-beta.205" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder --version 9.2.1-beta.205                
#r "nuget: CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder, 9.2.1-beta.205"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder as a Cake Addin
#addin nuget:?package=CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder&version=9.2.1-beta.205&prerelease

// Install CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder as a Cake Tool
#tool nuget:?package=CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder&version=9.2.1-beta.205&prerelease                

CommunityToolkit.Hosting.Azure.DataApiBuilder

Overview

This .NET Aspire Integration runs Data API builder in a container. Data API builder generates secure, feature-rich REST and GraphQL endpoints for Tables, Views and Stored Procedures performing CRUD (Create, Read, Update, Delete, Execute) operations against Azure SQL Database, SQL Server, PostgreSQL, MySQL and Azure CosmosDB.

Usage

Example 1: Single data source

var builder = DistributedApplication.CreateBuilder(args);

var sqlDatabase = builder
    .AddSqlServer("your-server-name")
    .AddDatabase("your-database-name");

var dab = builder.AddDataAPIBuilder("dab")
    .WithReference(sqlDatabase)
    .WaitFor(sqlDatabase);

var app = builder
    .AddProject<Projects.Client>()
    .WithReference(dab);

builder.Build().Run();

Example 2: Multiple data sources

var builder = DistributedApplication.CreateBuilder(args);

var sqlDatabase1 = builder
    .AddSqlServer("your-server-name")
    .AddDatabase("your-database-name");

var sqlDatabase2 = builder
    .AddSqlServer("your-server-name")
    .AddDatabase("your-database-name");

var dab = builder.AddDataAPIBuilder("dab", 
        "./dab-config-1.json", 
        "./dab-config-2.json")
    .WithReference(sqlDatabase1)
    .WithReference(sqlDatabase2)
    .WaitFor(sqlDatabase1)
    .WaitFor(sqlDatabase2);

var app = builder
    .AddProject<Projects.Client>()
    .WithReference(dab);

builder.Build().Run();

Note: All files are mounted/copied to the same /App folder.

Example 3: Cosmos DB and a schema file

var builder = DistributedApplication.CreateBuilder(args);

var cosmosdb = builder
    .AddAzureCosmosDB("myNewCosmosAccountName")
    .AddDatabase("myCosmosDatabaseName");

var dab = builder.AddDataAPIBuilder("dab",
        "./dab-config.json",
        "./schema.graphql")
    .WithReference(cosmosdb)
    .WaitFor(cosmosdb);

var app = builder
    .AddProject<Projects.Client>()
    .WithReference(dab);

builder.Build().Run();

Example 4: Connection string-only

var builder = DistributedApplication.CreateBuilder(args);

var sqlDatabase = builder
    .AddConnectionString("your-cs-name");

var dab = builder.AddDataAPIBuilder("dab")
    .WithReference(sqlDatabase);

var app = builder
    .AddProject<Projects.Client>()
    .WithReference(dab);

builder.Build().Run();

Configuration

  • name - The name of the resource.
  • port - The optional port number for the Data API builder container. Defaults to random.
  • configFilePaths - Opiotnal paths to the config/schema file(s) for Data API builder. Default is ./dab-config.json.

Data API builder Container Image Configuration

You can specify custom registry/image/tag values by using the WithImageRegistry/WithImage/WithImageTag methods:

var dab = builder.AddDataAPIBuilder("dab")
    .WithImageRegistry("mcr.microsoft.com")
    .WithImage("azure-databases/data-api-builder")
    .WithImageTag("latest");

Known Issues

The current imlpementation of the Data API builder .NET Aspire integration does not support HTTPS endpoints. However, this is only a dev-time consideration. Service discovery when published can use HTTPS without any problems.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.2.1-beta.206 23 3/1/2025
9.2.1-beta.205 44 2/27/2025
9.2.1-beta.204 40 2/26/2025
9.2.1-beta.203 43 2/26/2025
9.2.0 88 2/26/2025
9.2.0-beta.202 35 2/26/2025
9.2.0-beta.201 40 2/26/2025
9.2.0-beta.199 43 2/26/2025
9.2.0-beta.198 40 2/26/2025
9.1.1-beta.197 57 2/25/2025
9.1.1-beta.196 45 2/25/2025
9.1.1-beta.195 41 2/25/2025
9.1.1-beta.194 45 2/25/2025
9.1.1-beta.193 40 2/25/2025
9.1.1-beta.192 50 2/24/2025
9.1.1-beta.191 45 2/24/2025
9.1.1-beta.190 50 2/19/2025
9.1.1-beta.189 46 2/19/2025
9.1.1-beta.188 49 2/19/2025
9.1.1-beta.187 61 2/19/2025
9.1.1-beta.183 62 2/18/2025
9.1.1-beta.182 60 2/18/2025
9.1.1-beta.181 56 2/18/2025
9.1.1-beta.180 52 2/17/2025
9.1.1-beta.178 54 2/17/2025
9.1.1-beta.177 56 2/12/2025
9.1.1-beta.176 66 2/11/2025
9.1.1-beta.175 50 2/11/2025
9.1.1-beta.173 61 2/10/2025
9.1.1-beta.169 52 2/6/2025
9.1.1-beta.168 46 2/5/2025
9.1.1-beta.166 44 2/5/2025
9.1.1-beta.165 44 2/5/2025
9.1.1-beta.164 47 2/3/2025
9.1.1-beta.162 46 2/3/2025
9.1.1-beta.155 51 1/30/2025
9.1.1-beta.154 41 1/30/2025
9.1.1-beta.153 46 1/30/2025
9.1.1-beta.152 35 1/29/2025
9.1.1-beta.150 45 1/29/2025
9.1.1-beta.148 47 1/26/2025
9.1.1-beta.147 43 1/26/2025
9.1.1-beta.146 47 1/23/2025
9.1.1-beta.145 42 1/22/2025
9.1.1-beta.144 36 1/22/2025
9.1.1-beta.142 43 1/22/2025
9.1.1-beta.140 41 1/22/2025
9.1.1-beta.139 48 1/21/2025
9.1.1-beta.138 46 1/20/2025
9.1.1-beta.137 41 1/17/2025
9.1.1-beta.136 34 1/15/2025
9.1.1-beta.135 16 1/15/2025
9.1.1-beta.134 16 1/15/2025
9.1.1-beta.128 32 1/9/2025
9.1.1-beta.127 29 1/9/2025
9.1.1-beta.126 39 1/9/2025
9.1.1-beta.125 36 1/9/2025
9.1.1-beta.124 36 1/9/2025
9.1.0 310 12/12/2024
9.1.0-beta.123 49 1/3/2025
9.1.0-beta.122 51 1/3/2025
9.1.0-beta.121 52 1/2/2025
9.1.0-beta.120 49 12/30/2024
9.1.0-beta.119 42 12/30/2024
9.1.0-beta.118 47 12/30/2024
9.1.0-beta.116 47 12/30/2024
9.1.0-beta.114 46 12/30/2024
9.1.0-beta.113 44 12/30/2024
9.1.0-beta.112 50 12/18/2024
9.1.0-beta.110 51 12/16/2024
9.1.0-beta.109 55 12/12/2024
9.0.1-beta.108 49 12/12/2024
9.0.1-beta.107 47 12/11/2024
9.0.1-beta.106 48 12/12/2024
9.0.1-beta.104 49 12/11/2024
9.0.1-beta.102 50 12/6/2024
9.0.1-beta.99 50 12/6/2024
9.0.1-beta.98 52 12/6/2024
9.0.1-beta.95 49 12/5/2024
9.0.1-beta.94 49 12/5/2024
9.0.1-beta.93 49 12/2/2024
9.0.1-beta.92 51 11/30/2024
9.0.1-beta.91 51 11/30/2024
9.0.1-beta.90 52 11/29/2024
9.0.1-beta.89 53 11/29/2024
9.0.1-beta.88 47 11/27/2024
9.0.1-beta.87 45 11/27/2024
9.0.1-beta.86 56 11/27/2024
9.0.1-beta.84 55 11/24/2024
9.0.1-beta.83 54 11/22/2024
9.0.1-beta.82 59 11/21/2024
9.0.1-beta.81 49 11/19/2024
9.0.1-beta.80 42 11/19/2024
9.0.1-beta.79 45 11/19/2024
9.0.1-beta.77 55 11/15/2024
9.0.0 114 11/15/2024
9.0.0-beta.76 49 11/14/2024
9.0.0-beta.75 47 11/14/2024
9.0.0-beta.74 48 11/14/2024
9.0.0-beta.73 49 11/14/2024
9.0.0-beta.72 53 11/14/2024
9.0.0-beta.71 60 11/13/2024
9.0.0-beta.70 63 11/13/2024
9.0.0-beta.69 53 11/13/2024
9.0.0-beta.68 50 11/13/2024
9.0.0-beta.67 54 11/13/2024
9.0.0-beta.66 62 11/13/2024
9.0.0-beta.63 60 11/12/2024
9.0.0-beta.54 61 10/31/2024
1.0.0-beta.60 62 11/11/2024
1.0.0-beta.58 52 11/4/2024
1.0.0-beta.57 48 11/1/2024
1.0.0-beta.56 46 11/1/2024
1.0.0-beta.55 48 11/1/2024