Tagged Questions
3
votes
1answer
864 views
When should i be opening and closing MongoDB connections?
i am very new to MongoDB and NoSQL in general and i've just started building a site with MongoDB / Norm / ASP.NET MVC 3.
I am wondering how i should be scoping the connections to my Mongo database.
...
0
votes
2answers
191 views
MongoDB and NoRM - Querying collection against a list of parameters
I need to query a collection based on a list of parameters.
For example my model is:
public class Product
{
string id{get;set;}
string title{get;set;}
List<string> tags{get;set;}
DateTime ...
0
votes
1answer
81 views
MongoDb Norm serialization
I know this is subjective, but how good is the norm serializer, particularly related to serialization of complex objects that are cyclic. Essentially I have big chunk of deserialized xml message, ...
0
votes
1answer
112 views
How can I compare 2 dates in a Where statement while using NoRM for MongoDB on C#?
I have a table in Mongo. One of the fields is a DateTime. I would like to be able to get all of the records that are only for a single day (i.e. 9/3/2011).
If I do something like this:
var list = ...
1
vote
3answers
1k views
MongoDB text search on string array
I have the following class:
public class Movie
{
string Name get; set;
string Director get; set;
IList<String> Tags get; set;
}
How I can query the Tags? I want to query as SQL ...
8
votes
4answers
700 views
MongoDB, C# and NoRM + Denormalization
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 ...
0
votes
1answer
452 views
DbReference with custom MongoIdentifier (MongoDB & NoRM)
I'm a new Mongo user (haven't gotten used to the name even... makes me
laugh every time), and I have this problem (feeling mongo).
I have a class "User", with the MongoIdentifier defined like this:
...
0
votes
2answers
337 views
Exact Contains Match on a Sub Collection
Using mongodb with the NoRM driver I have this document:
{
"_id" : ObjectId("0758030341b870c019591900"),
"TmsId" : "EP000015560091",
"RootId" : "1094362",
"ConnectorId" : ...
2
votes
2answers
501 views
Using the HiLoIdGenerator in NoRM for MongoDB to create a unique identifier
I have been struggling a little with the HiLoIdGenerator that comes with NoRM (http://normproject.org/); I want to use it to generate a unique identifier that I can use as a SLUG for my blog posts. At ...
2
votes
2answers
902 views
how to add new field in mongodb, if i use norm or csharp-mongodb drivers
I have two projects which are based on mongodb database. One project use csharp-mongodb and another - norm driver.
I make request to my db only with generic methods like GetCollection.
How can i add ...
22
votes
6answers
5k views
What is the most mature MongoDB driver for C#?
So, there are
mongodb-csharp
simple-mongodb
NoRM
as C# drivers for MongoDB available.
Which one of them is the most mature and stable one?
Why would you choose one over the other two?
Are they ...
2
votes
3answers
1k views
How can I use mongodb with linq for store large binary objects(files)?
I know two most popular C# drivers for mongodb, this are mongodb-csharp and NoRM. Both of them have some problems. For example, with mongodb-csharp I can't use full functional linq and with NoRM I ...