# OracleEntityFrameworkCoreSettings Properties

- Package: [Aspire.Oracle.EntityFrameworkCore](/reference/api/csharp/aspire.oracle.entityframeworkcore.md)
- Type: [OracleEntityFrameworkCoreSettings](/reference/api/csharp/aspire.oracle.entityframeworkcore/oracleentityframeworkcoresettings.md)
- Kind: `Properties`
- Members: `6`

Provides the client configuration settings for connecting to a Oracle database using EntityFrameworkCore.

## CommandTimeout

- Name: `CommandTimeout`
- Modifiers: `nullable` `get; set`
- Returns: `int?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Oracle.EntityFrameworkCore/OracleEntityFrameworkCoreSettings.cs)

Gets or sets the time in seconds to wait for the command to execute.

```csharp
public int? CommandTimeout { get; set; }
```

## ConnectionString

- Name: `ConnectionString`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Oracle.EntityFrameworkCore/OracleEntityFrameworkCoreSettings.cs)

The connection string of the Oracle database to connect to.

```csharp
public string? ConnectionString { get; set; }
```

## DisableHealthChecks

- Name: `DisableHealthChecks`
- Modifiers: `get; set`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Oracle.EntityFrameworkCore/OracleEntityFrameworkCoreSettings.cs)

Gets or sets a boolean value that indicates whether the database health check is disabled or not.

```csharp
public bool DisableHealthChecks { get; set; }
```

## DisableRetry

- Name: `DisableRetry`
- Modifiers: `get; set`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Oracle.EntityFrameworkCore/OracleEntityFrameworkCoreSettings.cs)

Gets or sets whether retries should be disabled.

```csharp
public bool DisableRetry { get; set; }
```

## DisableTracing

- Name: `DisableTracing`
- Modifiers: `get; set`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Oracle.EntityFrameworkCore/OracleEntityFrameworkCoreSettings.cs)

Gets or sets a boolean value that indicates whether the OpenTelemetry tracing is disabled or not.

```csharp
public bool DisableTracing { get; set; }
```

## InstrumentationOptions

- Name: `InstrumentationOptions`
- Modifiers: `nullable` `get; set`
- Returns: `Action<OracleDataProviderInstrumentationOptions>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Oracle.EntityFrameworkCore/OracleEntityFrameworkCoreSettings.cs)

Gets or sets an action to modify the default Open Telemetry instrumentation options

```csharp
public Action<OracleDataProviderInstrumentationOptions>? InstrumentationOptions { get; set; }
```
