| 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.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
 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