Rows.Remove
Overview
Deletes a row from the initialized data extensionSyntax
Rows.Remove(1, 2)
| Ordinal | Type | Description | |
|---|---|---|---|
| 1 | string | Required | Fields used to filter row |
| 2 | string | Required | Values in fields used to filter row |
Example
This sample code removes a row from the birthdayDE data extension when that row contains the first name of Angel and an age of 24.
var birthdayDE= DataExtension.Init("birthdayDE");
birthdayDE.Rows.Remove(["FirstName", "Age"], ["Angel", 24]);