MySqlBuilderExtensions.AddMySql 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 MySQL server resource to the application model. For local development a container is used.
public static Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.MySqlServerResource> AddMySql (this Aspire.Hosting.IDistributedApplicationBuilder builder, string name, Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.ParameterResource>? password = default, int? port = default);
static member AddMySql : Aspire.Hosting.IDistributedApplicationBuilder * string * Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.ParameterResource> * Nullable<int> -> Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.MySqlServerResource>
<Extension()>
Public Function AddMySql (builder As IDistributedApplicationBuilder, name As String, Optional password As IResourceBuilder(Of ParameterResource) = Nothing, Optional port As Nullable(Of Integer) = Nothing) As IResourceBuilder(Of MySqlServerResource)
Parameters
- name
- String
The name of the resource. This name will be used as the connection string name when referenced in a dependency.
- password
- IResourceBuilder<ParameterResource>
The parameter used to provide the root password for the MySQL resource. If null
a random password will be generated.
Returns
A reference to the IResourceBuilder<T>.
Remarks
This version of the package defaults to the tag of the container image.