# AzureBasedReminderTable.RemoveRow(GrainId, string, string)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.reminders.azurestorage/orleans.runtime.reminderservice.azurebasedremindertable/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.reminders.azurestorage/orleans.runtime.reminderservice.azurebasedremindertable/methods/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Reminders.AzureStorage/Storage/AzureBasedReminderTable.cs#L238-L263)

```csharp
public Task<bool> RemoveRow(GrainId grainId, string reminderName, string eTag)
```

Removes a row from the table.

### Parameters

- `grainId` (`GrainId`): The grain ID.
- `reminderName` (`string`): The reminder name.
- `eTag` (`string`): The ETag.

### Returns

true if a row with `grainId` and `reminderName` existed and was removed successfully, false otherwise
