Method PullAllWrapped
PullAllWrapped<T>(string, IEnumerable<T>)
Removes all values from the named array element that are equal to any of a list of wrapped values (see $pullAll).
public UpdateBuilder PullAllWrapped<T>(string name, IEnumerable<T> values)
Parameters
namestringThe name of the array element.
valuesIEnumerable<T>The wrapped values to remove.
Returns
- UpdateBuilder
The builder (so method calls can be chained).
Type Parameters
TThe type of wrapped values.
PullAllWrapped<T>(string, params T[])
Removes all values from the named array element that are equal to any of a list of wrapped values (see $pullAll).
public UpdateBuilder PullAllWrapped<T>(string name, params T[] values)
Parameters
namestringThe name of the array element.
valuesT[]The wrapped values to remove.
Returns
- UpdateBuilder
The builder (so method calls can be chained).
Type Parameters
TThe type of wrapped values.