do you have any experience with mongo db and NOrm in asp.net mvc? i have read that mongo is faster than sql server 2008. I know that mongo is schema free and i can use the type List. Why do I have to continue to choose sql server? mongo db appear more fast and more flexible
Mongo DB with NOrm vs SQL Server 2008 R2 with linqToSQL in ASP.NET MVC 3
469 Views Asked by Marco Levarato At
1
There are 1 best solutions below
Related Questions in SQL-SERVER
- SQL server not returning all rows
- Big data with spatial queries/indexing
- Conditional null constraint on Null
- SQL Query - Order by String (which contains number and chars)
- Optimising a slow running SQL Server Stored procedure ordered by calculated fields to return a closest match
- Dynamics CRM Publishing Customizations - Multi Developers
- Is there anyway to set the relationship of many tables from Model?
- Implementation of Rank and Dense Rank in MySQL
- ORM Code First versa Database First in Production
- MVC : Insert data to two tables
- Data streams in case of Merge
- table with multiple IDs but seperate notes need sorting (Tried SQL code to make a union query)
- SQL table Partitioning by Year with ColumnStore index implemented on the table
- Defining which network to use for SQL Server 2012 Management Studio
- Fill a week days in a table with preceding Sundays value
Related Questions in ASP.NET-MVC
- Can MVC.NET prevent SQL-injection at razor or controller level?
- Getting and passing MVC Model data to AngularJS controller
- Access property of an object of type [Model] in JQuery
- Entity Framework Code First with Fluent API Concurrency `DbUpdateConcurrencyException` Not Raising
- Bundling and minification issue in MVC
- ASP-MVC Code-first migrations checkbox not active
- Why does Azure CloudConfigurationManager.GetSetting return null
- Dynamic roles list in CustomAuthorize ASP MVC
- Jquery: Change contents of <select> tag dynamically
- Why web API return 404 when deploy to IIS
- MVC route URL not containing parameter
- Invalidate user credentials when password changes
- MVC : Insert data to two tables
- MVC - Only allow users to edit their own data
- Submit Button on Razor View doesn't call Action Result - MVC
Related Questions in LINQ-TO-SQL
- Add additional fields to Linq group by
- How LinqToSql Generates output result of stored procedures
- Querying and mapping complex objects using Linq-to-SQL
- Linq to SQL replace .Any() with .Contains()
- Find All Rows in DataTable Where Column Value is NOT Unique Using Linq Query
- Stored procedure's output parameters not updating
- how to get random rows in linq with last inserted row on top
- Convert or output SSIS package/job to SQL script?
- Entity Framework and Union Statement
- File activation error when dynamically creating .mdf database
- How to insert data into table in linq to sql
- Linq To Sql - Get week day name from date
- What can cause an EntityCommandExecutionException in EntityCommandDefinition.ExecuteStoreCommands?
- How do I abstract and secure the same connection string from many applications centrally?
- Linq to Sql escape WHERE clause
Related Questions in MONGODB
- Meteor MapReduce Package Error: A method named is already defined
- Token based authorization in nodejs/ExpressJs and Angular(Single Page Application)
- Big data with spatial queries/indexing
- How to recover from losing all your /data/db
- What are the benefits of using the fields option when querying in Meteor
- Node JS Async Response
- mongoose get property from nested schema after `group`
- What to use for subdocuments ID's in MongoDB?
- ORM Code First versa Database First in Production
- How to profile a Yii2 based API?
- get length of embedded document in mongoDB with jade
- Architecture: Multiple Mongo databases+connections vs multiple collections with Express
- Why are numbers being inserted into MongoDB incorrectly?
- hibernate ogm mongo db, how to get count of collection?
- C++ Mongodb driver, not working
Related Questions in NORM
- scipy.linalg.norm different from sklearn.preprocessing.normalize?
- Split/slice vectors into sub-vectors and get their norms without a loop
- MongoDB + NoRM- Concurrency and collections
- NoRM - FindAndModify with arguments
- Mongo DB with NOrm vs SQL Server 2008 R2 with linqToSQL in ASP.NET MVC 3
- Selecting an embedded object using LINQ (from MongoDB)
- Using norm Function In MATLAB
- Numerical problems with qnorm
- NoRM UpdateOne no work
- Norm of a arrays of vectors in python
- MongoDb with .net creating POCOs id values
- Find L3 norm of two arrays efficiently in Python
- Lp-norm without using any python library
- Callback gradient norm from scipy.minimise (python)
- What is the fastest way to apply np.linalg.norm() (python) to each element of a 2d numpy array and a given value?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You miss the context: there are tasks where MongoDB would suit better than SQL Server, but there are some where SQL would be better. You should understand the details of you problem to choose the right tool.