MongoDB 和 NoRM - 根据参数列表查询集合

发布于 2024-12-16 00:23:31 字数 514 浏览 2 评论 0原文

我需要根据参数列表查询集合。 例如我的模型是:

public class Product
{
    string id{get;set;}
    string title{get;set;}
    List<string> tags{get;set;}
    DateTime createDate{get;set;}
    DbReference<User> owner{get;set;}
}

public class User
{
    string id{get;set;}
    ...other properties...
}

我需要查询指定用户拥有的所有产品并按创建日期排序。

例如:

GetProducts(List<string> ownerIDs)
{
    //query
}

如果可能的话,我需要在一个查询中执行此操作,而不是在 foreach 内执行。如果需要,我可以更改我的模型

I need to query a collection based on a list of parameters.
For example my model is:

public class Product
{
    string id{get;set;}
    string title{get;set;}
    List<string> tags{get;set;}
    DateTime createDate{get;set;}
    DbReference<User> owner{get;set;}
}

public class User
{
    string id{get;set;}
    ...other properties...
}

I need to query for all products owned by specified users and sorted by creationDate.

For example:

GetProducts(List<string> ownerIDs)
{
    //query
}

I need to do it in one query if possible not inside foreach. I can change my model if needed

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

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

发布评论

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

评论(2

静赏你的温柔 2024-12-23 00:23:31

听起来您正在寻找 $in 标识符。您可以像这样查询产品:

db.product.find({owner.$id: {$in: [ownerId1, ownerId2, ownerId3] }}).sort({createDate:1});

只需将 javascript 数组 [ownerId1, ...] 替换为您自己的所有者数组。

请注意:我猜这个查询不是很有效。我对 MongoDB 中的 DBRefs 不太感兴趣,它本质上是向非关系数据库添加关系。我建议简单地将ownerID 直接存储在产品对象中并基于此进行查询。

It sounds like you are looking for the $in identifier. You could query products like so:

db.product.find({owner.$id: {$in: [ownerId1, ownerId2, ownerId3] }}).sort({createDate:1});

Just replace that javascript array [ownerId1, ...] with your own array of owners.

As a note: I would guess this query is not very efficient. I haven't had much luck with DBRefs in MongoDB, which essentially adds relations to a non-relational database. I would suggest simply storing the ownerID directly in the product object and querying based on that.

○愚か者の日 2024-12-23 00:23:31

使用 LINQ 的解决方案是创建一个用户 ID 数组,然后对它们执行 .Contains 操作,如下所示:

List<string> users = new List<string>();
foreach (User item in ProductUsers)
    users .Add(item.id);

return MongoSession.Select<Product>(p => users .Contains(p.owner.id))
                    .OrderByDescending(p => p.createDate)
                    .ToList();

The solution using LINQ is making an array of user IDs and then do .Contains on them like that:

List<string> users = new List<string>();
foreach (User item in ProductUsers)
    users .Add(item.id);

return MongoSession.Select<Product>(p => users .Contains(p.owner.id))
                    .OrderByDescending(p => p.createDate)
                    .ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文