索引模式值不能是“无”#39;当自动索引被指定为' true'

时间:2015-11-27 14:01:20

标签: azure azure-cosmosdb

删除索引时,尝试插入文档时出现以下错误:

{{
  "code": "BadRequest",
  "message": "Message: {\"Errors\":[\"Indexing mode value cannot be 'none' when automatic indexing is specified as 'true'.\"]}..."
}}

我正在使用SDK执行此操作:

collection.IndexingPolicy.IndexingMode = IndexingMode.None;

client.ReplaceDocumentCollectionAsync(collection).Wait();

关于此错误或指定自动索引为true / false,我无法在线找到任何内容。

1 个答案:

答案 0 :(得分:1)

在文档中看起来缺少这个。

false需要将自动索引设置为IndexingMode.None

collection.IndexingPolicy.Automatic = false;

collection.IndexingPolicy.IndexingMode = IndexingMode.None;

client.ReplaceDocumentCollectionAsync(collection).Wait();