CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder 9.1.1-beta.194

Prefix Reserved
This is a prerelease version of CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder.
There is a newer version of this package available.
See the version list below for details.
dotnet add package CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder --version 9.1.1-beta.194
                    
NuGet\Install-Package CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder -Version 9.1.1-beta.194
                    
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.1.1-beta.194" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder" Version="9.1.1-beta.194" />
                    
Directory.Packages.props
<PackageReference Include="CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder --version 9.1.1-beta.194
                    
#r "nuget: CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder, 9.1.1-beta.194"
                    
#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.
#addin nuget:?package=CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder&version=9.1.1-beta.194&prerelease
                    
Install CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder as a Cake Addin
#tool nuget:?package=CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder&version=9.1.1-beta.194&prerelease
                    
Install CommunityToolkit.Aspire.Hosting.Azure.DataApiBuilder as a Cake Tool

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.3.1-beta.253 112 5 days ago
9.3.1-beta.252 93 10 days ago
9.3.1-beta.250 91 10 days ago
9.3.1-beta.249 102 10 days ago
9.3.1-beta.248 93 10 days ago
9.3.1-beta.247 92 10 days ago
9.3.1-beta.244 442 12 days ago
9.3.1-beta.242 441 12 days ago
9.3.1-beta.241 116 18 days ago
9.3.0 267 18 days ago
9.3.0-beta.239 109 18 days ago
9.2.2-beta.237 113 18 days ago
9.2.2-beta.236 82 23 days ago
9.2.2-beta.230 113 24 days ago
9.2.2-beta.229 110 24 days ago
9.2.2-beta.228 124 a month ago
9.2.2-beta.227 117 a month ago
9.2.2-beta.226 125 a month ago
9.2.2-beta.225 120 a month ago
9.2.2-beta.224 120 a month ago
9.2.2-beta.223 126 a month ago
9.2.2-beta.222 118 a month ago
9.2.2-beta.220 121 a month ago
9.2.2-beta.218 118 a month ago
9.2.2-beta.217 164 a month ago
9.2.2-beta.216 165 a month ago
9.2.2-beta.215 164 a month ago
9.2.2-beta.214 162 a month ago
9.2.2-beta.213 157 a month ago
9.2.2-beta.212 154 a month ago
9.2.2-beta.211 161 a month ago
9.2.2-beta.210 163 a month ago
9.2.2-beta.208 59 a month ago
9.2.1 134 a month ago
9.2.1-beta.207 91 a month ago
9.2.1-beta.206 53 a month ago
9.2.1-beta.205 53 a month ago
9.2.1-beta.204 49 a month ago
9.2.1-beta.203 53 a month ago
9.2.0 134 a month ago
9.2.0-beta.202 45 a month ago
9.2.0-beta.201 50 a month ago
9.2.0-beta.199 53 a month ago
9.2.0-beta.198 48 a month ago
9.1.1-beta.197 66 a month ago
9.1.1-beta.196 53 a month ago
9.1.1-beta.195 49 a month ago
9.1.1-beta.194 55 a month ago
9.1.1-beta.193 48 a month ago
9.1.1-beta.192 59 a month ago
9.1.1-beta.191 54 a month ago
9.1.1-beta.190 57 2 months ago
9.1.1-beta.189 53 2 months ago
9.1.1-beta.188 55 2 months ago
9.1.1-beta.187 67 2 months ago
9.1.1-beta.183 69 2 months ago
9.1.1-beta.182 66 2 months ago
9.1.1-beta.181 62 2 months ago
9.1.1-beta.180 58 2 months ago
9.1.1-beta.178 61 2 months ago
9.1.1-beta.177 63 2 months ago
9.1.1-beta.176 72 2 months ago
9.1.1-beta.175 58 2 months ago
9.1.1-beta.173 68 2 months ago
9.1.1-beta.169 59 2 months ago
9.1.1-beta.168 54 2 months ago
9.1.1-beta.166 50 2 months ago
9.1.1-beta.165 52 2 months ago
9.1.1-beta.164 56 2 months ago
9.1.1-beta.162 55 2 months ago
9.1.1-beta.155 60 2 months ago
9.1.1-beta.154 48 2 months ago
9.1.1-beta.153 52 2 months ago
9.1.1-beta.152 43 2 months ago
9.1.1-beta.150 52 2 months ago
9.1.1-beta.148 55 2 months ago
9.1.1-beta.147 49 2 months ago
9.1.1-beta.146 53 2 months ago
9.1.1-beta.145 48 2 months ago
9.1.1-beta.144 44 2 months ago
9.1.1-beta.142 47 2 months ago
9.1.1-beta.140 48 2 months ago
9.1.1-beta.139 53 3 months ago
9.1.1-beta.138 51 3 months ago
9.1.1-beta.137 45 3 months ago
9.1.1-beta.136 40 3 months ago
9.1.1-beta.135 20 3 months ago
9.1.1-beta.134 19 3 months ago
9.1.1-beta.128 38 3 months ago
9.1.1-beta.127 36 3 months ago
9.1.1-beta.126 44 3 months ago
9.1.1-beta.125 43 3 months ago
9.1.1-beta.124 43 3 months ago
9.1.0 384 4 months ago
9.1.0-beta.123 53 3 months ago
9.1.0-beta.122 57 3 months ago
9.1.0-beta.121 56 3 months ago
9.1.0-beta.120 53 3 months ago
9.1.0-beta.119 48 3 months ago
9.1.0-beta.118 51 3 months ago
9.1.0-beta.116 53 3 months ago
9.1.0-beta.114 52 3 months ago
9.1.0-beta.113 49 3 months ago
9.1.0-beta.112 61 4 months ago
9.1.0-beta.110 55 4 months ago
9.1.0-beta.109 59 4 months ago
9.0.1-beta.108 55 4 months ago
9.0.1-beta.107 52 4 months ago
9.0.1-beta.106 54 4 months ago
9.0.1-beta.104 51 4 months ago
9.0.1-beta.102 57 4 months ago
9.0.1-beta.99 52 4 months ago
9.0.1-beta.98 54 4 months ago
9.0.1-beta.95 52 4 months ago
9.0.1-beta.94 51 4 months ago
9.0.1-beta.93 51 4 months ago
9.0.1-beta.92 54 4 months ago
9.0.1-beta.91 53 4 months ago
9.0.1-beta.90 55 4 months ago
9.0.1-beta.89 55 4 months ago
9.0.1-beta.88 50 4 months ago
9.0.1-beta.87 47 4 months ago
9.0.1-beta.86 58 4 months ago
9.0.1-beta.84 57 4 months ago
9.0.1-beta.83 57 4 months ago
9.0.1-beta.82 62 4 months ago
9.0.1-beta.81 53 5 months ago
9.0.1-beta.80 43 5 months ago
9.0.1-beta.79 46 5 months ago
9.0.1-beta.77 56 5 months ago
9.0.0 117 5 months ago
9.0.0-beta.76 52 5 months ago
9.0.0-beta.75 55 5 months ago
9.0.0-beta.74 50 5 months ago
9.0.0-beta.73 51 5 months ago
9.0.0-beta.72 54 5 months ago
9.0.0-beta.71 61 5 months ago
9.0.0-beta.70 65 5 months ago
9.0.0-beta.69 55 5 months ago
9.0.0-beta.68 51 5 months ago
9.0.0-beta.67 56 5 months ago
9.0.0-beta.66 64 5 months ago
9.0.0-beta.63 62 5 months ago
9.0.0-beta.54 63 5 months ago
1.0.0-beta.60 63 5 months ago
1.0.0-beta.58 54 5 months ago
1.0.0-beta.57 50 5 months ago
1.0.0-beta.56 47 5 months ago
1.0.0-beta.55 49 5 months ago