Update<TDocument>.BitwiseAnd Method (Expression<Func<TDocument, Int32>>, Int32) |
Sets the named element to the bitwise and of its value with another value (see $bit with "and").
Namespace:
MongoDB.Driver.Builders
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntaxpublic static UpdateBuilder<TDocument> BitwiseAnd(
Expression<Func<TDocument, int>> memberExpression,
int value
)
Public Shared Function BitwiseAnd (
memberExpression As Expression(Of Func(Of TDocument, Integer)),
value As Integer
) As UpdateBuilder(Of TDocument)
static member BitwiseAnd :
memberExpression : Expression<Func<'TDocument, int>> *
value : int -> UpdateBuilder<'TDocument>
Parameters
- memberExpression
- Type: System.Linq.Expressions.Expression<Func<TDocument, Int32>>
The member expression. - value
- Type: System.Int32
The value to be and-ed with the current value.
Return Value
Type:
UpdateBuilder<TDocument>
The builder (so method calls can be chained).
See Also