Search Results for

    Show / Hide Table of Contents
    View Source

    Class DatabaseInstallData

    Represents the database configuration data provided during installation.

    Inheritance
    object
    Namespace: Umbraco.Cms.Core.Models.Installer
    Assembly: Umbraco.Core.dll
    Syntax
    public class DatabaseInstallData

    Constructors

    View Source

    DatabaseInstallData()

    Declaration
    public DatabaseInstallData()

    Properties

    View Source

    ConnectionString

    Gets or sets the full connection string, if provided directly.

    Declaration
    public string? ConnectionString { get; set; }
    Property Value
    Type Description
    string
    View Source

    Id

    Gets or sets the unique identifier of the selected database configuration.

    Declaration
    public Guid Id { get; set; }
    Property Value
    Type Description
    Guid
    View Source

    Name

    Gets or sets the database name.

    Declaration
    public string? Name { get; set; }
    Property Value
    Type Description
    string
    View Source

    Password

    Gets or sets the database password for authentication.

    Declaration
    public string? Password { get; set; }
    Property Value
    Type Description
    string
    View Source

    ProviderName

    Gets or sets the database provider name.

    Declaration
    public string? ProviderName { get; set; }
    Property Value
    Type Description
    string
    View Source

    Server

    Gets or sets the database server address.

    Declaration
    public string? Server { get; set; }
    Property Value
    Type Description
    string
    View Source

    TrustServerCertificate

    Gets or sets a value indicating whether to trust the server certificate.

    Declaration
    public bool TrustServerCertificate { get; set; }
    Property Value
    Type Description
    bool
    View Source

    UseIntegratedAuthentication

    Gets or sets a value indicating whether to use integrated authentication.

    Declaration
    public bool UseIntegratedAuthentication { get; set; }
    Property Value
    Type Description
    bool
    View Source

    Username

    Gets or sets the database username for authentication.

    Declaration
    public string? Username { get; set; }
    Property Value
    Type Description
    string
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX