Deletes a view item.

Namespace:  C1.LiveLinq.LiveViews
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public virtual void Delete()
Visual Basic
Public Overridable Sub Delete

Remarks

Deleting a view item is an update operation on the view. As any other update operation performed directly on the view (as opposed to on the base data collection on which that view depends, see AsUpdatable<(Of <<'(T>)>>)(View<(Of <<'(T>)>>))), it is allowed only if the view is not read-only (see IsReadOnly), and it results in updating (in this case, deleting an item from) one of the view's base data collections.

See Also