DataRow.EndEdit 方法

定义

终止该行的编辑。

C#
public void EndEdit ();

例外

已在 RowChanging 事件中调用该方法。

该编辑操作破坏了约束。

此行属于该表,该编辑尝试更改只读列的值。

该编辑操作尝试将 null 值放在 AllowDBNull 为 False 的列中。

示例

如果验证函数返回 true, EndEdit 下面的示例使用 方法结束对值的编辑 DataRow

C#
private void AcceptOrReject(DataRow row)
{
    // Use a function to validate the row's values.
    // If the function returns true, end the edit;
    // otherwise cancel it.
    if(ValidateRow(row))
        row.EndEdit();
    else
        row.CancelEdit();
}

private bool ValidateRow(DataRow thisRow)
{
    bool isValid = true;
    // Insert code to validate the row values.
    // Set the isValid variable.
    return isValid;
}

注解

设置 属性时,如果 事件中 RowChanging 发生异常,则会生成异常。

适用于

产品 版本
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

另请参阅