0
votes
0answers
666 views

Multiple actions were found that match the request Error WEB API MongoDB c#

Im fairly new to ASP.NET MCV 4 as well as Mongo DB and trying to build web API. I thought I had finally got it right but when I start the app and enter: http://localhost:50491/api/document into my ...
0
votes
1answer
168 views

Web API error failed to serialize the response body

Im fairly new to ASP.NET MCV 4 as well as Mongo DB and trying to build web API. I thought I had finally got it right but when I start the app and enter: http://localhost:50491/api/document into my ...
3
votes
1answer
79 views

How to you make changes of document properties in MongoDB

I`m new to MongoDB and i just successfully migrated from MS SQL to MongoDB. When i made my custom classes for MongoDB collections i had some extra property whitch i dont need it. How i can remove it? ...
1
vote
0answers
57 views

How to see query that is constructed by linq in MongoDB? [duplicate]

Possible Duplicate: Translate Queryable<T> back to IMongoQuery I want to see queries that is constructed by linq in MongoDB. I have been checked documentations about profiling but i ...
1
vote
1answer
712 views

How to increment object fields inside an array using MongoDB?

Initially this is the format of my document: { _id: some id, name: 'some name', versions: [] } In the versions field I store objects like {v: '2.5', count: 5} where count holds the ...
0
votes
1answer
1k views

Updating a single element in a nested list with official C# MongoDB driver

I have a simple game with multiple rounds and I want to update the most recent round: class Game { public ObjectId Id { get; set; } public List<Round> Rounds { get; set; } } class ...
0
votes
1answer
374 views

copy a row to a new row in MongoDB shell

I have some documents in a MongoDB collection, and I would like to be able to copy them to a new row, using the shell. I tried this: db.schedules.find().forEach(function(x) { x._id = null; ...
2
votes
2answers
331 views

Mongo db / C# - How to do bounding box queries?

Per title - I am using the official mongodb driver and I am looking to get all POIs within the given bounding box. So far I have: MongoCollection<BsonDocument> collection = ...
1
vote
1answer
308 views

Can I automatically populate LastUpdated fields in MongoDB (using C# driver)

I want to automatically update a LastUpdatedOn field on a mongo document every time a save or update operation occurs on that document. Rather than putting this burden on every bit of code that does ...
1
vote
1answer
652 views

Is MongoDB producing more than 100% storage overhead? i.e., I insert 22GB data and it occupies 50GB on the disk

I have done a simple experiment to test MongoDB's performance and disk usage. I insert 22GB data but it occupies 50GB on the disk. I will describe this experiment in details as below. Setup: ...
1
vote
2answers
568 views

MongoDB - 32 MB document size limit possible now?

I read somewhere a while ago that it would be possible to use 32 MB per document in the future ? Does anybody know when is this going to happen ? Or is it possible already ? Thanks!
5
votes
2answers
537 views

Using MongoDB shell commands on MongoDB 10Gen's driver

I want to simply execute pure MongoDB queries via MongoDb 10Gen's .net(c#) driver. For example . I want to use below command on driver db.people.update( { name:"Joe" }, { $inc: { n : 1 } } ); I ...
4
votes
1answer
315 views

Why using sharding with MongoDB?

We started to use MongoDB at work. So far so good however I was asked to assess if MongoDB could do Replica Set and Sharding at the same time. After searching for a while I find out that yes it can ...
10
votes
4answers
1k views

Mongo Schema-less Collections & C#

I'm exploring Mongo as an alternative to relational databases but I'm running into a problem with the concept of schemaless collections. In theory it sounds great, but as soon as you tie a model to ...
2
votes
3answers
454 views

What does uniqueness mean in the NoSQL world, how do I handle relations in MongoDB?

I am currently trying to figure out, how Nosql databases handle relations and what the unique Id of a Document really means. Maybe I am expecting to much of MongoDb or I haven't grasp the concept of ...
1
vote
1answer
697 views

MongoDB Stored Procedure (javascript function) that updates documents before it returns them as results?

I'm in the process of converting a system from sql server to mongodb. I believe the project is a good candidate for mongodb, but that's not my question. In the sql database, i have a stored ...
23
votes
2answers
4k views

Update MongoDB field using value of another field

In MongoDB, is it possible to update the value of a field using the value from another field? The equivalent SQL would be something like: UPDATE Person SET Name = FirstName + ' ' + LastName And ...