IndexAction.Merge<T>(T) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new IndexAction for merging a document into an existing document in the index.
public static Microsoft.Azure.Search.Models.IndexAction<T> Merge<T> (T document);
static member Merge : 'T -> Microsoft.Azure.Search.Models.IndexAction<'T>
Public Shared Function Merge(Of T) (document As T) As IndexAction(Of T)
Type Parameters
- T
The CLR type that maps to the index schema. Instances of this type can be stored as documents in the index.
Parameters
- document
- T
The document to merge; Set only the properties that you want to change.
Returns
A new IndexAction.
Remarks
If type T contains non-nullable value-typed properties, these properties may not merge correctly. If you do not set such a property, it will automatically take its default value (for example, 0 for int or false for bool), which will override the value of the property currently stored in the index, even if this was not your intent. For this reason, it is strongly recommended that you always declare value-typed properties to be nullable in type T.
The above does not apply if you are using Document
as type T.
Applies to
Azure SDK for .NET