删除RavenDB集合

发布于 2024-11-29 04:19:57 字数 66 浏览 0 评论 0原文

我需要删除 Raven DB 中的整个文档集合。一一删除(文件)并不是一个明智的选择。有什么方法可以轻松做到这一点吗?

I need to delete a whole collection of documents in Raven DB. Deleting one by one (documents) is not a wise choice. Is there a way I can do this easily?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

懵少女 2024-12-06 04:19:57

您可以进行基于集合的操作。

store.DatabaseCommands.DeleteByIndex()这样做的

store.DatabaseCommands.DeleteByIndex(
    "Enquiries/MyEnquiryIndexName",
    new IndexQuery { Query = "Id:*", },
    allowStale: false);

代码示例,作者:@Marijin

You can do a set based operation.

store.DatabaseCommands.DeleteByIndex() to do so

store.DatabaseCommands.DeleteByIndex(
    "Enquiries/MyEnquiryIndexName",
    new IndexQuery { Query = "Id:*", },
    allowStale: false);

Code sample by @Marijin

杀手六號 2024-12-06 04:19:57

不确定以前的版本,但以下适用于 RavenDB 5.0

如果您想从名为“Users”的集合中删除所有文档,您可以将集合名称传递给 DeleteByQueryOperation

DeleteByQueryOperation("from Users")

通用版本如下所示:

using Raven.Client.Documents;
using Raven.Client.Documents.Operations;

public class ExampleClass
{
  public static void DeleteCollection<TEntity>(IDocumentStore store, string databaseName)
  {
    var collectionName = store.Conventions.GetCollectionName(typeof(TEntity));

    store.Operations
      .ForDatabase(databaseName)
      .Send(new DeleteByQueryOperation($"from {collectionName}"));
  }
}

Not sure about previous versions, but below applies to RavenDB 5.0

If you wanted to delete all documents from a collection called "Users", you could pass in the collection name to the DeleteByQueryOperation

DeleteByQueryOperation("from Users")

A generic version would look something like this:

using Raven.Client.Documents;
using Raven.Client.Documents.Operations;

public class ExampleClass
{
  public static void DeleteCollection<TEntity>(IDocumentStore store, string databaseName)
  {
    var collectionName = store.Conventions.GetCollectionName(typeof(TEntity));

    store.Operations
      .ForDatabase(databaseName)
      .Send(new DeleteByQueryOperation(
quot;from {collectionName}"));
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文