SearchDefinitionBuilderTDocumentMoreLikeThisTLike Method (TLike) | 
 
            Creates a search definition that returns documents similar to the input documents.
            
 
    Namespace: 
   MongoDB.Driver.Search
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic SearchDefinition<TDocument> MoreLikeThis<TLike>(
	params TLike[] like
)
Public Function MoreLikeThis(Of TLike) ( 
	ParamArray like As TLike()
) As SearchDefinition(Of TDocument)
member MoreLikeThis : 
        like : 'TLike[] -> SearchDefinition<'TDocument> 
Parameters
- like
 - Type: TLike
            One or more documents that Atlas Search uses to extract representative terms for.
             
Type Parameters
- TLike
 - The type of the like documents.
 
Return Value
Type: 
SearchDefinitionTDocumentA more like this search definition.
See Also