| UpdateTDocumentPullAllTValue Method  | 
 
            Removes all values from the named array element that are equal to any of a list of values (see $pullAll).
            
 
    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> PullAll<TValue>(
	Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
	IEnumerable<TValue> values
)
Public Shared Function PullAll(Of TValue) ( 
	memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
	values As IEnumerable(Of TValue)
) As UpdateBuilder(Of TDocument)
static member PullAll : 
        memberExpression : Expression<Func<'TDocument, IEnumerable<'TValue>>> * 
        values : IEnumerable<'TValue> -> UpdateBuilder<'TDocument> 
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, IEnumerableTValue
 The member expression.
- values
- Type: System.Collections.GenericIEnumerableTValue
 The values to remove.
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