Skip to content
Docs Try Aspire

MongoDBEntityFrameworkCoreSettings Properties

Class Properties 5 members
Provides the client configuration settings for connecting to a MongoDB database using EntityFrameworkCore.
ConnectionString Section titled ConnectionString nullable string?
Gets or sets the connection string of the MongoDB database to connect to.
public string? ConnectionString { get; set; }
DatabaseName Section titled DatabaseName nullable string?
Gets or sets the name of the MongoDB database to connect to.
public string? DatabaseName { get; set; }
DisableHealthChecks Section titled DisableHealthChecks bool
Gets or sets a boolean value that indicates whether the MongoDB health check is disabled or not.
public bool DisableHealthChecks { get; set; }
Gets or sets a boolean value that indicates whether the OpenTelemetry tracing is disabled or not.
public bool DisableTracing { get; set; }
HealthCheckTimeout Section titled HealthCheckTimeout nullable int?
Gets or sets a integer value that indicates the MongoDB health check timeout in milliseconds.
public int? HealthCheckTimeout { get; set; }