RavenDB MoreLikeThis with dynamic document - example?

72 Views Asked by At

According to the docs, RavenDB v3.5 added "MoreLikeThis" support for artificial documents, meaning that you can use a dynamic document for comparison instead of an already stored document.

I can't find an example of how this is done. The examples in the docs all seem to use existing documents.

1

There are 1 best solutions below

0
On BEST ANSWER

You do that by passing the JSON string of the artificial document here:

https://github.com/ravendb/ravendb/blob/v3.5/Raven.Abstractions/Data/MoreLikeThisQuery.cs#L113

See the sample here: https://github.com/ravendb/ravendb/blob/f3b5f3a186d07776bf38bf9effab4d7d75d5c647/Raven.Tests.Bundles/MoreLikeThis/MoreLikeThisShouldSupportMapReduceIndexes.cs#L100

        [Fact]
        public void CanMakeDynamicDocumentQueries()
        {
            using (var session = store.OpenSession())
            {
                var list = session.Advanced.MoreLikeThis<IndexDocument, MapReduceIndex>(
                    new MoreLikeThisQuery
                    {
                        Document = "{ \"Text\": \"C#: The Good Good Parts\" }",
                        Fields = new[] { "Text" },
                        MinimumTermFrequency = 1,
                        MinimumDocumentFrequency = 1
                    });

                Assert.Equal(2, list.Count());
                Assert.Contains("Javascript: The Good Parts", list.First().Text);
            }
        }