| UpdateTDocumentAddToSetTValue Method  | 
 
            Adds a value to a named array element if the value is not already in the array (see $addToSet).
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
 Syntax
Syntaxpublic static UpdateBuilder<TDocument> AddToSet<TValue>(
	Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
	TValue value
)
Public Shared Function AddToSet(Of TValue) ( 
	memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
	value As TValue
) As UpdateBuilder(Of TDocument)
static member AddToSet : 
        memberExpression : Expression<Func<'TDocument, IEnumerable<'TValue>>> * 
        value : 'TValue -> UpdateBuilder<'TDocument> 
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, IEnumerableTValue
 The member expression.
- value
- Type: TValue
 The value 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
See Also