다음을 통해 공유


DatabaseObjectName Constructors

Definition

Overloads

DatabaseObjectName()

Initializes a new instance of the DatabaseObjectName class.

DatabaseObjectName(String, String, String, String)

Initializes a new instance of the DatabaseObjectName class.

DatabaseObjectName()

Initializes a new instance of the DatabaseObjectName class.

public DatabaseObjectName ();
Public Sub New ()

Applies to

DatabaseObjectName(String, String, String, String)

Initializes a new instance of the DatabaseObjectName class.

public DatabaseObjectName (string databaseName = default, string objectName = default, string schemaName = default, string objectType = default);
new Microsoft.Azure.Management.DataMigration.Models.DatabaseObjectName : string * string * string * string -> Microsoft.Azure.Management.DataMigration.Models.DatabaseObjectName
Public Sub New (Optional databaseName As String = Nothing, Optional objectName As String = Nothing, Optional schemaName As String = Nothing, Optional objectType As String = Nothing)

Parameters

databaseName
String

The unescaped name of the database containing the object

objectName
String

The unescaped name of the object

schemaName
String

The unescaped name of the schema containing the object

objectType
String

Type of the object in the database Possible values include: 'StoredProcedures', 'Table', 'User', 'View', 'Function'

Applies to