Tag Archive for 'nosql'

Getting Started – Basic DB Operations in RavenDB

I was recently was looking at NoSQL based databases for a personal project that I was working on. I did not want spend a lot of time designing the perfect database for an application which might or might not be used extensively. For this I checked out MongoDB and I had decided to go with it but while searching a database native to dotnet I saw RavenDB and felt it might be an appropriate fit for my simple application for the simple reason that RavenDB is fully written in dotnet. I downloaded the binaries for RavenDB and started playing with the db. The five main operations that we do on a database are

  • Adding records to the table.
  • Showing all records in the table.
  • Updating existing records in the table.
  • Deleting records in the table.
  • Searching for a specific record in the table.
  • Continue reading ‘Getting Started – Basic DB Operations in RavenDB’