Tagged Questions
2
votes
1answer
299 views
Deserialization Error ASP.NET MongoDB
I am trying to retireve all the documents in my MongoDB collection via a REST api built in ASP.NET MVC 4 and I have encoutered an error when i enter localhost:50491/api/document:
An error occurred ...
2
votes
1answer
207 views
How to cache some temp data in MongoDB?
I have some client-server application. And as one of its part, I need to implement a paginal approach on client side. I am making data footprint from db (I'm using MongoDB with 10gen's driver) on ...
0
votes
1answer
722 views
How do you increment a field in mongodb using c#
Thought this would be pretty straight forward, but my value is remaining the same (0).
What I'd like to do is increment my UnreadMessages field when the user receives a message they haven't read and ...
1
vote
1answer
1k views
How to query a sub document collection using MongoDB and C# driver
I have the following structure:
public class ThreadDocument
{
public ThreadDocument()
{
Messages = new List<Message>();
Recipients = new List<Recipient>();
}
...
2
votes
3answers
298 views
How can I update a inner property using the 10gen c# driver?
I have this structure:
public class User
{
public ObjectId Id { get; set; }
public Location Location { get; set; }
public DateTime LastAround {get;set;}
}
public class ...
