情况如下。我正在插入一个新帖子,插入后我获取帖子,它工作正常。然后我改变一个字段并更新哪个工作正常。当我尝试在更新后获取相同的帖子时,会出现此问题。它总是返回null。
public class Post
{
public string _id { get; set; }
public string Title { get; set; }
public string Body { get; set; }
}
// insert a post
var post = new Post() {Title = "first post", Body = "my first post"};
var posts = _db.GetCollection("posts");
var document = post.ToDocument();
// inserts successfully!
posts.Insert(document);
// now get the post
var spec = new Document() {{"_id", document["_id"]}};
// post was found success
var persistedPost = posts.FindOne(spec).ToClass<Post>();
persistedPost.Body = "this post has been edited again!!";
var document2 = persistedPost.ToDocument();
// updates the record success although I don't want to pass the second parameter
posts.Update(document2,spec);
// displays that the post has been updated
foreach(var d in posts.FindAll().Documents)
{
Console.WriteLine(d["_id"]);
Console.WriteLine(d["Body"]);
}
// FAIL TO GET THE UPDATED POST. THIS ALWAYS RETURNS NULL ON FindOne call!
var updatedPost = posts.FindOne(new Document() {{"_id",document["_id"]}}).ToClass<Post>(); // this pulls back the old record with Body = my first post
Assert.AreEqual(updatedPost.Body,persistedPost.Body);
更新:
我想我已经解决了这个问题,但问题非常奇怪。见最后一行。
var updatedPost = posts.FindOne(new Document() {{"_id",document["_id"]}}).ToClass<Post>();
FindOne方法接受依赖于document [“_ id”]的新文档。不幸的是,这不起作用,并且由于某种原因,它要求您发送与更新命令后将获得的persistedPost更新相关联的_id。这是一个例子:
var persistedPost = posts.FindOne(spec).ToClass<Post>();
persistedPost.Body = "this is edited";
var document2 = persistedPost.ToDocument();
posts.Update(document2,new Document() {{"_id",document["_id"]}});
var updatedPost = posts.FindOne(new Document(){{"_id",document2["_id"]}}).ToClass<Post>();
Console.WriteLine(updatedPost.Body);
请参阅,现在我发送document2 [“_ id”]而不是文档字段。这似乎工作正常。我猜它为每个“_id”字段生成的24字节代码是不同的。
答案 0 :(得分:0)
答案是不要依赖MongoDb生成的“_id”。只需使用您自己的唯一标识符,如Guid或身份。
更新:
我的ToDocument方法将_id作为字符串放在你必须总是把_id作为Oid。