Click or drag to resize
UpdateDefinitionBuilder<TDocument>.Rename Method (FieldDefinition<TDocument>, String)
Creates a field renaming operator.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.4.1
Syntax
public UpdateDefinition<TDocument> Rename(
	FieldDefinition<TDocument> field,
	string newName
)

Parameters

field
Type: MongoDB.Driver.FieldDefinition<TDocument>
The field.
newName
Type: System.String
The new name.

Return Value

Type: UpdateDefinition<TDocument>
A field rename operator.
See Also