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

I have created a simple object with getters and setters:

 public class MemberCanonical : IMemberCanonical
    {
        public ObjectId Id { get; set; }
        public String username { get; set; }
        public String email { get; set; }
        public String status { get; set; }
        public IEnumerable<string> roles { get; set; }
    }

Now I want to insert a new member into the database with:

            try
            {
                memberObj.username = username;
                memberObj.email = email;
                memberObj.status = "active";
                // memberObj.Id = new ObjectId().ToString();
                this.membershipcollection.Insert(memberObj, SafeMode.True);
                return true;
            }
            catch(Exception ex)
            {
                return false;   
            }

I would expect insert to create a unique _id (Id), but that's not happening. Upon insert when I view the _id field I get "0000000...."

What do I need to do in order for Mongo to generate its own _id on insert?

share|improve this question
Sometimes I like to answer questions in subjects I know nothing about. Here's what I found out: You can generate ids yourself using ObjectId.GenerateNewId() - You can do it in the constructor of MemberCanonical, or check the Id while inserting against ObjectId.Empty. Next, it is possible it should be called _id, I'm not quite sure on that. I'd also try to use ObjectId? and set its value to null, but that is a wild guess. – Kobi Nov 10 '12 at 18:46

1 Answer

Just mark your Id property with [BsonId] attribute, and generated id value will be there!

public class MemberCanonical : IMemberCanonical
{
    [BsonId]
    public ObjectId Id { get; set; }

this.membershipcollection.Insert(memberObj, SafeMode.True);
var idYouLookingFor = memberObj.Id;

Or alternative way, suggested by @Kobi: "use _id field name instead of Id" should also work.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.