DatabaseObjectName Constructors
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.
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'