Show / Hide Table of Contents

Class MongoDbV2LinkedService

Linked service for MongoDB data source.

Inheritance
System.Object
LinkedService
MongoDbV2LinkedService
Inherited Members
LinkedService.AdditionalProperties
LinkedService.Annotations
LinkedService.ConnectVia
LinkedService.Description
LinkedService.Parameters
LinkedService.Version
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

connectionString or database is null.

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

Back to top Azure SDK for .NET