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.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
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