Using MongoDB I\'m querying homes that are within 25 miles of a lat/long. My first attempt to do this used the near command, like so:
The MongoDB driver tutorial suggests to register class maps to automap via BsonClassMap.RegisterClassMap<MyClass>();
Please tell me how make search by fields-arrays? I have some fields of type List<Int64>. For example first document has field-array with numbers [1,2,3,4] and second document has such field with
I am trying to use MongoDB, C# and NoRM to work on some sample projects, but at this point I\'m having a much harder time wrapping my head around the data model. With RDBMS\'s related data is no probl
I have trouble with MongoDB on Windows 7 (32 bit). I make some tests with adding/deleting data. So after some time (i do not know how much, maybe 10 minutes of non-stopping requests) MongoDB server st
Please tell me how I must connect/disconnect to MongoDB via official C# driver? Question is simple and problem is trivial for first look, but:
Considering this class: public class Location { public Coordinates Geo { get; set; } public Location() { Geo = new Coordinates();
Let\'s say I have a Collection with two properties: amount and amountreceived that are decimals. I want to write a query that will return items from the collection that meet the criteria of the amoun
Using a paged result of some query i need to get from what page is a point.The object is return the data positioned at the right page when you push the point out of the scope opening the paged result
I tring to use a dropdownbox using a Bson object(BsonDevise) but is not clear for me if i can use directly the object or need to enumerate to add a listItems. Can someone fix me the way.