本文介绍了如何使用MongoDB和C#驱动程序查询子文档集合的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我具有以下结构:
public class ThreadDocument
{
public ThreadDocument()
{
Messages = new List<Message>();
Recipients = new List<Recipient>();
}
[JsonIgnore]
public ObjectId Id { get; set; }
public IList<Recipient> Recipients { get; set; }
public IList<Message> Messages { get; set; }
public DateTime LastMessageSent { get; set; }
public string LastSentByUserName { get; set; }
public string LastSentAvatarUrl { get; set; }
public string Snippet { get; set; }
public int MessageCount { get; set; }
}
public class Recipient
{
public string UserId { get; set; }
public int Status { get; set; }
}
public class Message
{
public string FromUserId { get; set; }
public string FromUsername { get; set; }
public string FromAvatarUrl { get; set; }
public DateTime Sent { get; set; }
public string Text { get; set; }
}
当我保存时,它会生成如下内容:
when I save, it produces something like this:
{
"_id" : ObjectId("4fa5eab4bfeddf23fcd01e4a"),
"Recipients" : [{
"UserId" : "4fa5d4d8bfeddf23fc72e590",
"Status" : 1
}, {
"UserId" : "4fa5d4f9bfeddf23fc72e592",
"Status" : 0
}],
"Messages" : [{
"FromUserId" : "4fa5d4d8bfeddf23fc72e590",
"FromUsername" : "a",
"FromAvatarUrl" : null,
"Sent" : ISODate("2012-05-06T03:06:28.396Z"),
"Text" : "b"
}],
"LastMessageSent" : ISODate("2012-05-06T03:06:28.395Z"),
"LastSentByUserName" : "a",
"LastSentAvatarUrl" : null,
"Snippet" : "b",
"MessageCount" : 1
}
我想做的是,如果已经创建了一个线程,则要使用相同的线程,并根据用户是发送给同一用户还是反之将消息添加到该线程.
What I would like to do is if there is already a thread created, to use the same one and tack on messages to that one based upon if the user is sending to the same user or vice versa.
我认为类似的方法会起作用,但是它返回null(无值):
I thought something like this would work, but it is returning null (no values):
var thread = threadHelper.Collection.Find(
Query.And(Query.EQ("Recipients.UserId", user.Id), Query.EQ("Recipients.UserId", sendToUser.Id))
).SingleOrDefault();
我在想一个包含所有内容?还是全部?不太确定如何进行查询.
I'm thinking like a contains all? or has all? Not really sure how to make the query.
推荐答案
尝试 ElemMatch :
var thread = threadHelper.Collection.Find(
Query.And(
Query.ElemMatch("Recipients", Query.EQ("UserId", user.Id)),
Query.ElemMatch("Recipients", Query.EQ("UserId", sendToUser.Id))
)
).SingleOrDefault();
这篇关于如何使用MongoDB和C#驱动程序查询子文档集合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!