Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I update an array into mongodb nested collection?

Code:

            public bool UpdateTest(string id, List<Test> tests)
            {
                IMongoQuery query = Query.EQ("_id", id);

                foreach (Test test in tests)
                {
                    test.Id = ObjectId.GenerateNewId().ToString();
                    test.LastModified = DateTime.UtcNow;
                }

                IMongoUpdate update = Update
                    .PushWrapped("Tests", tests);
                SafeModeResult result = _test.Update(query, update);

                return result.UpdatedExisting;
            }

Result:

    "Tests" : [[{
      "_id" : "50fa2c085029d631e85f99b7",
      "Name" : "test1",
    }, {
      "_id" : "50fa2c095029d631e85f99b8",
      "Name" : "test2",
    }]]

I don't want to have a array in the nested array. How can I do it?

Do I need to loop to update? Is it effective?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.