SearchDefinitionBuilderTDocumentMoreLikeThisTLike Method (IEnumerableTLike) |
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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax public SearchDefinition<TDocument> MoreLikeThis<TLike>(
IEnumerable<TLike> like
)
Public Function MoreLikeThis(Of TLike) (
like As IEnumerable(Of TLike)
) As SearchDefinition(Of TDocument)
member MoreLikeThis :
like : IEnumerable<'TLike> -> SearchDefinition<'TDocument>
Parameters
- like
- Type: System.Collections.GenericIEnumerableTLike
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