Method PushAllWrapped
PushAllWrapped<T>(string, IEnumerable<T>)
Adds a list of wrapped values to the end of the named array element (see $pushAll).
public UpdateBuilder PushAllWrapped<T>(string name, IEnumerable<T> values)
Parameters
namestringThe name of the array element.
valuesIEnumerable<T>The wrapped values to add to the end of the array.
Returns
- UpdateBuilder
The builder (so method calls can be chained).
Type Parameters
TThe type of wrapped values.
PushAllWrapped<T>(string, params T[])
Adds a list of wrapped values to the end of the named array element (see $pushAll).
public UpdateBuilder PushAllWrapped<T>(string name, params T[] values)
Parameters
namestringThe name of the array element.
valuesT[]The wrapped values to add to the end of the array.
Returns
- UpdateBuilder
The builder (so method calls can be chained).
Type Parameters
TThe type of wrapped values.