AzureKustoBuilderExtensions.AddReadWriteDatabase Method       
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a Kusto read-write database to the application model.
public static Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.Azure.Kusto.AzureKustoReadWriteDatabaseResource> AddReadWriteDatabase(this Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.Azure.Kusto.AzureKustoClusterResource> builder, string name, string? databaseName = default);
	static member AddReadWriteDatabase : Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.Azure.Kusto.AzureKustoClusterResource> * string * string -> Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.Azure.Kusto.AzureKustoReadWriteDatabaseResource>
	<Extension()>
Public Function AddReadWriteDatabase (builder As IResourceBuilder(Of AzureKustoClusterResource), name As String, Optional databaseName As String = Nothing) As IResourceBuilder(Of AzureKustoReadWriteDatabaseResource)
	Parameters
The Kusto server resource builder.
- name
 - String
 
The name of the resource. This name will be used as the connection string name when referenced in a dependency.
- databaseName
 - String
 
The name of the database. If not provided, this defaults to the same value as name.
Returns
A reference to the IResourceBuilder<T>.