7

我正在尝试使用 Patch API 更新嵌套集合。更具体地说,考虑以下示例 - 一个 Posts 集合:

{
  "Title": "Hello RavenDB",
  "Category": "RavenDB",
  "Content": "This is a blog about RavenDB",
  "Comments": [
    {
      "Title": "Unrealistic",
      "Content": "This example is unrealistic"
    },
    {
      "Title": "Nice",
      "Content": "This example is nice"
    }
  ]
}

我在http://ravendb.net/docs/client-api/partial-document-updateshttp://ravendb.net/docs/client-api/set-based-使用了 Patch API 和基于集合的操作文档操作以及几个 stackoverflow 问题作为使用集合操作和静态索引进行批量更新的资源。一个要求是仅当先前的值为“Nice”时才更新评论的“Title”,如果是,则将其更新为“Bad”。

静态索引“NicePosts”定义为:

Map = posts => from post in posts    
               where post.Comments.Any(comment => comment.Title == "Nice")
               select new {post.Title, post.Category}

批量补丁更新命令是:

    documentStore.DatabaseCommands.UpdateByIndex("NicePosts",   
                    new IndexQuery(),                                               
           new[] { new PatchRequest 
                    {   Type = PatchCommandType.Modify,                          
                    Name = "Comments",  
                      PrevVal = RavenJObject.Parse(@"{ ""Title"": ""Nice""}"),
                      Nested = new[]
                              {
                                new PatchRequest {Type = PatchCommandType.Set, Name = "Title", Value = new RavenJValue("Bad") },
                       }  }, allowStale: true);

我对此有一些疑问:

1) 我的更新命令的结构/语法是否正确?

2) 我希望对集合中的所有记录执行更新。因此,我没有在 IndexQuery 查询中定义查询过滤器,因为“NicePosts”索引已经返回了适当的集合。但是,运行此命令不会更新集合。

3)如果我设置“allowStale:false”,我会收到“stale index”错误。在打开我的文档存储会话之前,我实例化了索引类并执行它以将其持久化到 ravenDB 实例。任何想法这里出了什么问题?

谢谢,

编辑:

根据 ayende 的建议,将 Patch 命令更改为:

 documentStore.DatabaseCommands.UpdateByIndex("NicePosts",
                                         new IndexQuery(),
                                         new[] {
                                                   new PatchRequest {
                                                     Type = PatchCommandType.Modify,
                                                     Name = "Comments",
                                                     Position = 0,
                                                     Nested = new[] {
                                                       new PatchRequest {Type = PatchCommandType.Set, Name = "Title", Value = new RavenJValue("Bad")},
                                                     }
                                                   }
                                                 }, allowStale: false);
4

2 回答 2

10

现在可以使用脚本化补丁请求来完成:

string oldTitle = "Nice";
string newTitle = "Bad";

documentStore.DatabaseCommands.UpdateByIndex("NicePosts",   
    new IndexQuery(),                                               
    new ScriptedPatchRequest 
    {                       
        Script = @"for (var i = 0; i < this.Comments.length; i++)
                       if (this.Comments[i].Title == oldTitle)
                           this.Comments[i].Title = newTitle;",
        Values =
        {
            { "oldTitle", oldTitle },
            { "newTitle", newTitle },
        },
    }
);
于 2013-01-26T02:08:05.483 回答
3

您不能使用 patch 命令根据数组中的现有值更新值。您需要指定实际位置。

于 2012-05-15T05:58:40.347 回答