Table of Contents

Method PullWrapped

Namespace
MongoDB.Driver.Builders
Assembly
MongoDB.Driver.Legacy.dll

PullWrapped<T>(string, T)

Removes all values from the named array element that are equal to some wrapped value (see $pull).

public static UpdateBuilder PullWrapped<T>(string name, T value)

Parameters

name string

The name of the array element.

value T

The wrapped value to remove.

Returns

UpdateBuilder

The builder (so method calls can be chained).

Type Parameters

T

The type of wrapped value.