Dell Limerick Hackathon 2016

Dell Limerick Hackathon 2016

Hi everybody! Last January we had an Hackathon here @ Dell Limerick, the main theme was “office productivity”, aka “how would you improve your and your coworker’s productivity”. I was in a team with other 4 very smart guys, didn’t won but all in all it was a terrific experience…two...

2 minute read
Unit testing MongoDB in C# part 3: the database factories

Unit testing MongoDB in C# part 3: the database factories

Welcome to the third article of the series! Last time I was talking about the database context and at how I injected a Factory to create the repositories. Of course we could have injected every single repository in the cTor, but this way adding a new collection to the database would force too...

4 minute read
Unit testing MongoDB in C# part 2: the database context

Unit testing MongoDB in C# part 2: the database context

Hi All! Last time I rambled a little bit about TDD and how to implement a very simple MongoDB repository. This time I want to introduce you to my cool friend, DbContext. The basic idea is to have an interface exposing all the collection on your db, or, in our case,...

4 minute read
Unit testing MongoDB in C# part 1: the repository

Unit testing MongoDB in C# part 1: the repository

Ok folks, this time I’ll talk/brag a little bit about the fabulous C# MongoDB driver and how you can write some testable code with it. If you have come across this post, probably you already know what unit tests and TDD are so you can go directly to the code....

3 minute read