UpdateDefinitionBuilderTDocumentRename Method (ExpressionFuncTDocument, Object, String) | 
 
            Creates a field renaming operator.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic UpdateDefinition<TDocument> Rename(
	Expression<Func<TDocument, Object>> field,
	string newName
)
Public Function Rename ( 
	field As Expression(Of Func(Of TDocument, Object)),
	newName As String
) As UpdateDefinition(Of TDocument)
member Rename : 
        field : Expression<Func<'TDocument, Object>> * 
        newName : string -> UpdateDefinition<'TDocument> 
Parameters
- field
 - Type: System.Linq.ExpressionsExpressionFuncTDocument, Object
The field. - newName
 - Type: SystemString
The new name. 
Return Value
Type: 
UpdateDefinitionTDocumentA field rename operator.
See Also