UpdateBuilderPushEachWrappedT Method (String, PushEachOptions, T) |
Adds a list of values to the end of the named array element (see $push and $each).
Namespace:
MongoDB.Driver.Builders
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public UpdateBuilder PushEachWrapped<T>(
string name,
PushEachOptions args,
params T[] values
)
Public Function PushEachWrapped(Of T) (
name As String,
args As PushEachOptions,
ParamArray values As T()
) As UpdateBuilder
member PushEachWrapped :
name : string *
args : PushEachOptions *
values : 'T[] -> UpdateBuilder
Parameters
- name
- Type: SystemString
The name of the array element. - args
- Type: MongoDB.Driver.BuildersPushEachOptions
The args. - values
- Type: T
The values to add to the end of the array.
Type Parameters
- T
- The type of wrapped value.
Return Value
Type:
UpdateBuilderThe builder (so method calls can be chained).
See Also