Tagged Questions
NoRM is a MongoDB driver for .Net designed to provide access to strongly/statically-typed documents and collections. See https://github.com/atheken/NoRM for more details.
19
votes
7answers
3k 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 ...
9
votes
1answer
5k views
MongoDB transactions?
Playing around with MongoDB and NoRM in .NET.
Thing that confused me - there are no transactions
(can't just tell MongoConnection.Begin/EndTransaction or something like that).
I want to use Unit of ...
8
votes
4answers
471 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 ...
8
votes
3answers
716 views
too much data duplication in mongodb?
so i'm new to this whole NOSQL stuff and have recently been intrigued with mongoDB. i'm creating a new website from scratch and decided to go with MONGODB/NORM (for C#) as my only database. i've ...
6
votes
2answers
161 views
Compute distance in Cartesian Coordinate System in Mathematica
Analyzing Eye-movements on a screen, I set my origin to the bottom left corner of it
(Hard to modify at that point).
Trying to compute distance between some points and the center of the screen I use ...
4
votes
3answers
968 views
c# MongoDB (noRM) - Repository pattern with embedded documents
I’m developing an application with a model similar to Stack Overflow (question / answer etc...)
Modelling a NoSQL Forum Application with C# / ASP.net MVC
The model looks something like this ...
4
votes
2answers
1k views
When to use Singleton vs Transient vs Request using Ninject and MongoDB
I'm not quite sure when I should use SingletonScope() vs TransientScope() vs RequestScope() when I do my binding in my global.cs file.
I have for example my call to MongoSession (using NoRM and the ...
4
votes
4answers
461 views
How to pass ObjectId from MongoDB in MVC.net
I'm starting a new project with Mongo, NoRM and MVC .Net.
Before I was using FluentNHibernate so my IDs were integer, now my IDs are ObjectId. So when I have an Edit link my URL looks like this :
...
4
votes
2answers
843 views
MongoDB Norm query nested objects
Does anyone have a sample of how to query for nested/inner objects in MongoDB using NORM (C#)? For example, if a typical document in a collection looks like Order/OrderItems, how can I look up a ...
3
votes
1answer
148 views
MongoDb NORM - Pagination and Total Documents
Using the MongoDb NORM driver, does anyone know whether it's possible to get the cursor to a 'queried' collection similar to below, so that a 'page' of documents can be retrieved as well as the total ...
3
votes
2answers
241 views
MongoDB design - tags
I'm new with MongoDB. I have a design question, about performance of MongoDB. Lets say I have the class Movies with two properties, Name and Director. Also I want to tag this Movie Class. Is better ...
3
votes
2answers
230 views
Polymorphism problem in MongoDb with NoRM driver
I have classes
[MongoDiscriminated]
public abstract class Content
{
public int? Id { get; set; }
public int? ParentId { get; set; }
public string Slug { get; set; }
public string Path ...
3
votes
2answers
400 views
Modelling a NoSQL Forum Application with C# / ASP.net MVC
I'm currently developing a Forum (Question / Answer) based application.
Using C# ASP.net MVC and MongoDB for data storage.
I'm currently looking at the model.
I was thinking of having separate ...
3
votes
1answer
592 views
Mongo one to many relation and update problems
I'm implementing blog based on MongoDB.
Let's look at first how Mongo guys recommend us to store blog post and its comments (http://www.mongodb.org/display/DOCS/Schema+Design):
posts should be a ...
2
votes
2answers
130 views
numpy divide along axis
Is there a numpy function to divide an array along an axis with elements from another array? For example, suppose I have an array a with shape (l,m,n) and an array b with shape (m,); I'm looking for ...
2
votes
2answers
265 views
Python Numpy Question and Python Version Question
I want to use Numpy with Python 3.2 and it won't work; it says I need 3.1. Does anyone know how to get around this issue, other than using 3.1? What do I have to import in order to make this work in a ...
2
votes
3answers
834 views
How to calculate Euclidean length of a matrix without loops?
It seems like the answer to this should be simple, but I am stumped. I have a matrix of Nx3 matrix where there 1st 2nd and 3rd columns are the X Y and Z coordinates of the nth item. I want to ...
2
votes
2answers
361 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
662 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 ...
2
votes
1answer
418 views
Implementing a blog with MongoDB and NoRM: Relationships?
I'm starting to learn MongoDB, using the NoRM C# driver in an ASP.NET MVC project. I'm just writing POCO classes right now, and have question on how to implement relationships between Blog Posts, ...
2
votes
1answer
155 views
How to do an order by not case sensitive
I'm starting to work with MongoDB and NoRM and I would like to do an orderBy that is not Ccase sensitive, is it possible?
Thanks for the help!
2
votes
3answers
979 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 ...
1
vote
1answer
127 views
Read file content from MongoDB using NoRM driver
I'm trying to read the image file stored in a MongoDB, to do that I have following code in my ASP.net MVC 3 projects
public FileContentResult ProfileImage(ObjectId id)
{
using (var db = new ...
1
vote
1answer
56 views
MongoDb with .net creating POCOs id values
I am new to MongoDb but have an existing application which would benefit heavily from using it to store encapsulated data for fast retrieval and updating.
Now the problem I have is that I have ...
1
vote
0answers
36 views
NoRM and Geospatial with Nested Collection
Hello I use NoRM for managing Mongo, but I am wondering if it is possible to apply and use 2d indexing with it. I have followed the recommendations on this page ...
1
vote
1answer
192 views
MongoDB - Hosting on multiple servers
I am wanting to use MongoDB on my Windows Server and I am using the .NET code at:
https://github.com/atheken/NoRM/wiki/
I have 2 web servers that I need to host MongoDB on and keep the database on ...
1
vote
3answers
415 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 ...
1
vote
1answer
205 views
Storing multiple types of objects in one collection in MongoDB using NoRM
MongoDB is schema-less. So, I can technically store any number of different types within one collection. We currently have the need to store multiple objects that inherit from the same base class in ...
1
vote
1answer
370 views
Help with a generic LINQ insert method (Norm/MongoDB)
I'm trying to write a generic method to inset an object as an embedded document. The below code works already but I need to make a generic method that can be put in a repository and called from the ...
1
vote
2answers
377 views
NoRM - FindAndModify with arguments
Is it possible to specify fields while doing a FindAndModify, so only one field is returned?
Also, is it possible to do an upsert, to create the object if it doesn't exist.
As per:
...
1
vote
4answers
418 views
MongoDB + NoRM- Concurrency and collections
Lets say we have the following document structure:
class BlogPost
{
[MongoIdentifier]
public Guid Id{get;set;}
public string Body{get;set;}
....
}
class Comment
{
[MongoIdentifier]
...
1
vote
2answers
763 views
MongoDB C# : use official driver and Norm or wait for linq implementation, sugestions?
I searching to migrate my cms from SQL to NoSQL MongoDB using C#. I have created the first classes migration but i'm not happy with future evolutivity and stability using currents C# drivers. I have ...
1
vote
1answer
358 views
how to store files using MongoDb C# Norm
Can someone help me with a complete sample how to store a file using MongoDB, C# and Norm and manage the limitation size. I have read some ideas about but is not really clear for me.
Thanks.
1
vote
1answer
134 views
Preserve Joins by code in MongoDB
What are the best solution to preserve left joins in a NoSQL solutions like MongoDB/Norm if you can not modify the complete architecture of one cms. Experiences, Samples, Cost.
Thanks.
1
vote
1answer
212 views
C# MongoDB driver trouble( NORM)
I have used NORM driver in production. New year holidays - it is pretty cool, so my project get high loading and i want to set up a replication set, but have a problem - Norm does not support ...
1
vote
2answers
540 views
Mongodb NORM and POCO
I am experimenting with Mongodb and NORM in C#.
From what I have read the ObjectId that uniquely identifies a document in Mongodb is a sort of "special" Guid (in the sense that is unique) but has ...
1
vote
1answer
602 views
Lazy loading in MongoDB with NoRM
I have a model similar to this:
(simplified)
Question:
public class Question
{
public string QuestionID { get; set; }
public string Title { get; set; }
public string Body { get; set; }
...
1
vote
0answers
142 views
Storing a collection of IWhatever in MongoDB via NoRM
I'm having a very hard time getting this working; not even totally sure that it's possible.
Let's imagine a simple scenario:
class Employee {
List<ITask> Tasks {get;set;}
}
And say we ...
1
vote
1answer
345 views
MongoDb NoRM Linq issue
I'm trying MongoDB with NoRM in C# and can't figure out why my LINQ queries don't work. Something as simple as this:
How can this return all documents with all the fields/properties
populated:
...
1
vote
2answers
468 views
I get this error that I don't understand why, using NoRM and Mongo in my MVC project
Cannot access a disposed object.
Object name: 'System.Net.Sockets.TcpClient'.
I don't understand why it happen and how to deal with it. I use Ninject, my application is based on ...
1
vote
4answers
3k views
Get the 1-norm of a vector in Python
How can I calculate the 1-norm of the difference of two vectors, ||a - b||_1 = sum(|a_i - b_i|) in Python?
a = [1,2,3,4]
b = [2,3,4,5]
||a - b||_1 = 4
0
votes
1answer
37 views
NoRM UpdateOne no work
I'm using NoRM + MongoDB in an application test. I found the source code of the Mongo Session http://normproject.org/samples where the method update wrapp this:
using(var db = ...
0
votes
2answers
57 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
56 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
42 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 = ...
0
votes
0answers
60 views
Polymorphism when accessing embedded objects in MongoDB using NORM
I have a polymorphism issue using MongoDB and Norm.
I am using a I have a class called Event which has a list of embedded Criterias, the class Criterias is an abstract class which may contain N types ...
0
votes
1answer
312 views
NoSQL for Asp.Net my experience with NoRM and MongoDB
I develop in the last days a web page (http://www.srtbox.com/) for testing my architecture, more info here. With NoRM, MongoLab or MongoHQ for DB hosting. And I having a a lot of errors with NoRM. ...
0
votes
0answers
72 views
Norm IMongoCollection Injectioin with Ninject
How would you do IMongoCollection injection with Ninject? It needs to call Mongo.GetCollection().
public Myclass
{
public MyClass(IMongoCollection<User> userCollection)
{
//Do ...
0
votes
1answer
165 views
Creating a MongoDB server-side procedure with NoRM
I'm running into a weird issue when trying to insert a server-side procedure with NoRM. If I run the following code:
var javaScriptCollection = mongo.Database.GetCollection("system.js");
...
0
votes
0answers
114 views
NoRM update issue when using mapping
I've got the following type:
public class ErrorType
{
public string Name { get; set; }
public int Count { get; set; }
}
With the following configuration map:
public class ErrorTypeMap : ...