Click or drag to resize

UpdateTDocumentAddToSetEachTValue Method

Adds a list of values to a named array element adding each value only if it not already in the array (see $addToSet and $each).

Namespace:  MongoDB.Driver.Builders
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public static UpdateBuilder<TDocument> AddToSetEach<TValue>(
	Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
	IEnumerable<TValue> values
)

Parameters

memberExpression
Type: System.Linq.ExpressionsExpressionFuncTDocument, IEnumerableTValue
The member expression.
values
Type: System.Collections.GenericIEnumerableTValue
The values to add to the set.

Type Parameters

TValue
The type of the enumerable member values.

Return Value

Type: UpdateBuilderTDocument
The builder (so method calls can be chained).
See Also