RavenDB:如何从MultiMapIndex中正确查询/过滤嵌套值?

问题描述 投票:2回答:1

我的应用程序有一个要求,即应该能够通过相关PairsNumber过滤/搜索Contact

A Pair始终具有对Contact的引用,但是,联系号不会也不会存储在引用中。因此,我尝试为此创建一个自定义索引,因为PairContact存储在不同的集合中。

索引的简化示例如下。

public class Pairs_Search : AbstractMultiMapIndexCreationTask<Pairs_Search.Result>
{
    public class Result
    {
        public string Id { get; set; }
        public string Workspace { get; set; }
        public ContactResult Contact { get; set; }
        public bool HasContactDetails { get; set; }
    }

    public class ContactResult
    {
        public string Id { get; set; }
        public string Name { get; set; }
        public int Number { get; set; }
    }

    public Pairs_Search()
    {
        AddMap<Pair>(pairs => pairs
            .Select(p => new
                {
                    p.Id,
                    p.Workspace,
                    Contact = new
                    {
                        p.Contact.Id,
                        p.Contact.Name,
                        Number = 0
                    },
                    // Mark this items as WITHOUT contact details.
                    HasContactDetails = false,
                }
            )
        );

        AddMap<Contact>(contacts => contacts
            .Select(c => new
                {
                    Id = (string) null,
                    Workspace = (string) null,
                    Contact = new
                    {
                        c.Id,
                        Name = c.DisplayName,
                        c.Number
                    },
                    // Mark this items as WITH contact details.
                    HasContactDetails = true,
                }
            )
        );

        Reduce = results => results
            // First group by the contact ID. This will
            // create a group with 2 or more items. One with the contact
            // details, and one or more with pair details.
            // They are all marked by a boolean flag 'HasContactDetails'.
            .GroupBy(x => x.Contact.Id)
            // We are going to enrich each item in the current group, that is
            // marked as 'HasContactDetails = false', with the contact number.
            // We need that so that we can filter on it later.
            .Select(group =>
                group
                    .Select(i => new
                        {
                            i.Id,
                            i.Workspace,
                            Contact = new
                            {
                                i.Contact.Id,
                                i.Contact.Name,
                                // Does the current item have the contact details?
                                Number = i.HasContactDetails
                                    // Yes, in this case we use the previously set contact number.
                                    ? i.Contact.Number
                                    // No, find the item with the contact details and grab the number.
                                    : group.Single(x => x.HasContactDetails).Contact.Number
                            },
                            // Pass on the flag that indicates wheter or not
                            // this item has the contact details. We are going
                            // to need it later.
                            i.HasContactDetails
                        }
                    )
                    // We don't need the items with the contact details
                    // anymore, so filter them out.
                    .Where(x => !x.HasContactDetails)
            )
            // Flatten all the small lists to one big list.
            .SelectMany(x => x);

        // Mark the following fields of the result as searchable.
        Index(x => x.Contact.Number, FieldIndexing.Search);
    }
}

我已经建立了一个完整的示例,该示例再现了我遇到的问题。您可以找到示例here

创建索引工作正常。查询索引也可以正常工作,因为它正确匹配了配对和联系人,并用联系人的数量丰富了索引结果。但是,当我尝试对嵌套的.Where()属性使用.Search()Number时,它无法从索引中正确过滤结果数据集。

没有任何过滤的索引可以在下面的代码示例中看到(在完整的示例中也可用)。

private static async Task ThisOneWorks()
{
    using (var session = Store.OpenAsyncSession())
    {
        var results = await session
            .Query<Pairs_Search.Result, Pairs_Search>()
            .ToListAsync(); 

        LogResults("ThisOneWorks()", results);              
    }

    // Output:
    // ThisOneWorks(): Pair 'Harry Potter' with number '70'
    // ThisOneWorks(): Pair 'Harry Potter' with number '70'
    // ThisOneWorks(): Pair 'Hermione Granger' with number '71'
    // ThisOneWorks(): Pair 'Albus Dumbledore' with number '72'
}

也可对非嵌套值进行过滤(在完整示例中也可用)。如您所见,它过滤掉了具有不同工作空间的那个。

private static async Task ThisOneWithWorkspaceFilterWorks()
{
    using (var session = Store.OpenAsyncSession())
    {
        var results = await session                 
            .Query<Pairs_Search.Result, Pairs_Search>()
            .Where(x => x.Workspace == "hogwarts")
            .ToListAsync(); 

        LogResults("ThisOneWithWorkspaceFilterWorks()", results);               
    }

    // Output:
    // ThisOneWithWorkspaceFilterWorks(): Pair 'Harry Potter' with number '70'
    // ThisOneWithWorkspaceFilterWorks(): Pair 'Harry Potter' with number '70'
    // ThisOneWithWorkspaceFilterWorks(): Pair 'Hermione Granger' with number '71'
}

[当我尝试过滤/搜索WorkspaceNumber属性时,我希望获得与联系人Harry Potter相关的两个结果。但是相反,我只是得到了一个空的数据集。

private static async Task ThisOneWithWorkspaceAndNumberFilterDoesntWork()
{
    using (var session = Store.OpenAsyncSession())
    {
        var results = await session                 
            .Query<Pairs_Search.Result, Pairs_Search>()
            .Where(x => x.Workspace == "hogwarts")
            .Where(x => x.Contact.Number == 70)
            .ToListAsync(); 

        LogResults("ThisOneWithWorkspaceAndNumberFilterDoesntWork()", results);             
    }

    // Output:
    // ThisOneWithWorkspaceAndNumberFilterDoesntWork(): EMPTY RESULTS!
}

有人能告诉我我在做什么错吗?任何帮助将不胜感激!

indexing ravendb
1个回答
2
投票

解决方法是将ContactResult存储在另一个集合中,在这种情况下,这就是所谓的related documen t,当您创建索引时,您就'为相关文档建立索引'

从演示示例中学习https://demo.ravendb.net/demos/csharp/related-documents/index-related-documents该示例适用于基本地图索引,但原理与多地图相同。

从索引类中删除public class ContactResult并使用类似以下内容定义索引:

         select new Result
        {
            ....
            Number = LoadDocument<Contact>(Pair.Contact).Number
            .... 
        }
© www.soinside.com 2019 - 2024. All rights reserved.