I'm using official mongodb driver for c# in my test project and i've already insert document from c# web application to mongodb. In mongo console, db.blog.find() can display entries I've inserted. but when i tried to retrieve them, .net throw a exception

"System.InvalidOperationException: ReadString can only be called when CurrentBsonType is String, not when CurrentBsonType is ObjectId."

my entity class is very simple

namespace MongoDBTest
{
    public class Blog
    {

        public String _id
        {
            get;
            set;
        }

        public String Title
        {
            get;
            set;
        }
    }
}

and this is my retrieve code

    public List<Blog> List()
    {
        MongoCollection collection = md.GetCollection<Blog>("blog");
        MongoCursor<Blog> cursor = collection.FindAllAs<Blog>();
        cursor.SetLimit(5);

        return cursor.ToList();
    }

can anybody help me out? thanks!

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

I suppose you just need mark your blog Id with BsonId (and insert id yourself) attribute:

public class Blog
{
    [BsonId]
    public String Id {get;set;}

    public String Title{get;set;}
}

And all should be okay. Issue was because you not marked what field will be Mongodb _id and driver generated _id field with type ObjectId. And when driver trying deserialize it back he can't convert ObjectId to String.

Complete example:

MongoCollection collection = md.GetCollection<Blog>("blog");
var blog = new Blog(){Id = ObjectId.GenerateNewId().ToString(), 
                      Title = "First Blog"};
collection .Insert(blog);

MongoCursor<Blog> cursor = collection.FindAllAs<Blog>();
cursor.SetLimit(5);

var list = cursor.ToList();
link|improve this answer
hi Andrew Orsich, thanks for ur reply. – Ken Qiu Jul 21 '11 at 9:56
hi Andrew Orsich, I've inserted document using BsonDocument and mongodb auto generate ObjectId for document and store it, when i use MongoCollection<Blog> and call FindAllAs<Blog> method, ReadString method throws exception. So i change MongoCollection<Blog> to MongoCollection<BsonDocument> and traversal cursor object in foreach statement to convert each document to blog object. Anyway, ur reply help me resolved my problem, thank u :) – Ken Qiu Jul 21 '11 at 10:24
An easier fix would be to change the datatype of your ID to ObjectId and decorate it with [BsonId]. I ran into the same error message, and making that change fixed it for me. – CodeMonkey1313 Sep 29 '11 at 0:23
feedback

Your Answer

 
or
required, but never shown

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