Class MongoDbV2LinkedService
Linked service for MongoDB data source.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.MongoDbV2LinkedService/MongoDbV2LinkedServiceConverter))]
public class MongoDbV2LinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
MongoDbV2LinkedService(Object, Object)
Initializes a new instance of MongoDbV2LinkedService.
Declaration
public MongoDbV2LinkedService (object connectionString, object database);
Parameters
|
System.Object
connectionString
The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference. |
|
System.Object
database
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string). |
Exceptions
|
System.ArgumentNullException
|
Properties
ConnectionString
The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
Declaration
public object ConnectionString { get; set; }
Property Value
|
System.Object
|
Database
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
Declaration
public object Database { get; set; }
Property Value
|
System.Object
|