gpt4 book ai didi

c# - 删除 RavenDB 中的所有文档

转载 作者:行者123 更新时间:2023-11-30 22:13:45 26 4
gpt4 key购买 nike

关于如何删除 RavenDB 数据库中的所有文档,WWW 上有很多提示。有些比其他的更复杂,即 http://vpetroff.blogspot.co.uk/2012/04/deleting-all-documents-in-ravendb.html .

最佳答案

我一直在使用版本 3,"Auto/AllDocs" 似乎不起作用。但是,您可以检索索引名称并以这种方式删除,例如:

        var indexDefinitions = _documentStore.DatabaseCommands.GetIndexes(0, 100);
foreach (var indexDefinition in indexDefinitions)
{
_documentStore.DatabaseCommands.DeleteByIndex(indexDefinition.Name, new IndexQuery());
}

关于c# - 删除 RavenDB 中的所有文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18877009/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com