删除索引时,尝试插入文档时出现以下错误:
{{
"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,我无法在线找到任何内容。
答案 0 :(得分:1)
在文档中看起来缺少这个。
false
需要将自动索引设置为IndexingMode.None
。
collection.IndexingPolicy.Automatic = false;
collection.IndexingPolicy.IndexingMode = IndexingMode.None;
client.ReplaceDocumentCollectionAsync(collection).Wait();