RavenDB Useful Tools
Here I will list all of the useful tools I come across when using RavenDB. So here is the list:- RavenDB add on for Glimpse Glimpse RavenDB. RavenDB Mini Profiler – more info can be found here and...
View ArticleHost your RavendDB based MVC app on Appharbor
In this blog post I will walk through how to host an MVC application which uses RavenDB as the back-end document database hosted up on Appharbor, Appharbor now allows us to host RavenDB in the cloud....
View ArticleRavenDB Hints and Tips
Here is a list of hints and tips if you’re looking for some help with RavenDB. Sign up for the mailing list where you can see other people’s previous questions and answers to problems on the View the...
View ArticleProfiling your RavenDB MVC application
Your application is starting to take shape and you want to be able to quickly see what’s going on when using RavenDB. Step forward the in-built profiling dll which is very easy to set up and get going...
View ArticleAccessing RavenDB Studio when using Embedded Mode
I have seen a few people ask how to go about accessing the RavenDB studio when they use RavenDB in embedded mode, normally you would tend to use embedded mode when unit testing. In the following...
View ArticleExporting and Importing data with RavenDB
I was wondering how I would go above upgrading from one build version of RavenDB (build 701) to a newer version of RavenDB (build 888) and decided to find out how. As it turns out like most things in...
View ArticleRavenDB CRUD – How To
I always wondered how easy it would be to do a RavenDB CRUD (Create, Read, Update, Delete) example, so lets create a simple MVC application which we can use to create, read, update and delete. The...
View ArticleRavenDB – using the uniqueconstraint bundle
During the week at work we came across an issue where we are doing a linq query which is using a statement such as this:- var product = session.Query().Single(GetSource(key)); In Sql Server land we...
View ArticleWhat I learned last week – July 30 – 3rd August
This week I have been busy watching the KnockoutJS videos on Pluralsight, my favourite way to learn a new technology other than sitting coding – I am also working on a little home-brew website and this...
View ArticleRavenDB – Exporting and Importing using Smuggler
Smuggler is a tool for RavenDB which is used for exporting and importing data – today at work I was shown a nice way to use it to take production data out and import it locally for just one collection...
View Article