# AzureStorageReminderSiloBuilderExtensions Methods

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.reminders.azurestorage/orleans.hosting.azurestorageremindersilobuilderextensions/)

## UseAzureTableReminderService(ISiloBuilder, Action&lt;AzureTableReminderStorageOptions&gt;) {#useazuretablereminderservice-this-orleans-hosting-isilobuilder-system-action-orl-ae4af393}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.reminders.azurestorage/orleans.hosting.azurestorageremindersilobuilderextensions/methods/useazuretablereminderservice-this-orleans-hosting-isilobuilder-system-action-orl-ae4af393/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Reminders.AzureStorage/AzureStorageReminderSiloBuilderReminderExtensions.cs#L26-L27)

```csharp
public static ISiloBuilder UseAzureTableReminderService(this ISiloBuilder builder, Action<AzureTableReminderStorageOptions> configure)
```

Adds reminder storage backed by Azure Table Storage.

### Parameters

- `builder` (`ISiloBuilder`): The builder.
- `configure` (`Action<AzureTableReminderStorageOptions>`): The delegate used to configure the reminder store.

### Returns

The provided [ISiloBuilder](/orleans/docs/api/csharp/microsoft.orleans.runtime/orleans.hosting.isilobuilder/), for chaining.

## UseAzureTableReminderService(ISiloBuilder, Action&lt;OptionsBuilder&lt;AzureTableReminderStorageOptions&gt;&gt;) {#useazuretablereminderservice-this-orleans-hosting-isilobuilder-system-action-mic-5724aed4}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.reminders.azurestorage/orleans.hosting.azurestorageremindersilobuilderextensions/methods/useazuretablereminderservice-this-orleans-hosting-isilobuilder-system-action-mic-5724aed4/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Reminders.AzureStorage/AzureStorageReminderSiloBuilderReminderExtensions.cs#L44-L45)

```csharp
public static ISiloBuilder UseAzureTableReminderService(this ISiloBuilder builder, Action<OptionsBuilder<AzureTableReminderStorageOptions>> configureOptions)
```

Adds reminder storage backed by Azure Table Storage.

### Parameters

- `builder` (`ISiloBuilder`): The builder.
- `configureOptions` (`Action<OptionsBuilder<AzureTableReminderStorageOptions>>`): The configuration delegate.

### Returns

The provided [ISiloBuilder](/orleans/docs/api/csharp/microsoft.orleans.runtime/orleans.hosting.isilobuilder/), for chaining.

## UseAzureTableReminderService(ISiloBuilder, string) {#useazuretablereminderservice-this-orleans-hosting-isilobuilder-string-5dfb4023}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.reminders.azurestorage/orleans.hosting.azurestorageremindersilobuilderextensions/methods/useazuretablereminderservice-this-orleans-hosting-isilobuilder-string-5dfb4023/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Reminders.AzureStorage/AzureStorageReminderSiloBuilderReminderExtensions.cs#L62-L73)

```csharp
public static ISiloBuilder UseAzureTableReminderService(this ISiloBuilder builder, string connectionString)
```

Adds reminder storage backed by Azure Table Storage.

### Parameters

- `builder` (`ISiloBuilder`): The builder.
- `connectionString` (`string`): The storage connection string.

### Returns

The provided [ISiloBuilder](/orleans/docs/api/csharp/microsoft.orleans.runtime/orleans.hosting.isilobuilder/), for chaining.
