DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / ViewRowCollection Class / Remove Method
The view row representing the item to delete.

In This Topic
    Remove Method (ViewRowCollection)
    In This Topic
    Deletes the specified view item.
    Syntax
    'Declaration
     
    Public Function Remove( _
       ByVal row As ViewRow _
    ) As Boolean
    public bool Remove( 
       ViewRow row
    )

    Parameters

    row
    The view row representing the item to delete.

    Return Value

    true, if the item was deleted as a result of this operation; otherwise, false.
    Remarks
    This is an update operation on the view equivalent to calling ViewRow.Delete.
    See Also