修补集合以添加字段

patching a collection to add a field

我想修补 RavenDB 以将字段添加到集合中,但我只是在使用建议的语法时遇到错误。 (我可能不明白我应该使用什么)

我在补丁 window 中尝试了以下操作,但出现错误:' "Message": "Deserializing Json object with empty string as property name is not supported." '

store
    .DatabaseCommands
    .Patch(
        new ScriptedPatchRequest
        {
            Script = "_.extend(this, { 'GroupPlayString': 'Group Play'});"
        });

使用:

        Script = "this.GroupPlayString = 'Group Play'"