# IReminderTable.RemoveRow(GrainId, string, string)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.iremindertable/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.iremindertable/methods/)

```csharp
public abstract 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
