.net
Entity Framework part 3: Testing the DbContext
In the previous episode we saw how to map our complex models in a database using Entity Framework and we were left with the question of how to test our mappings and our model context. We will quickly go through those scenarios now. Integration Testing Integration tests are a particular type of tests which are […]
Continuous Integration with a Custom NuGet server
In any software development shop with a bit of common sense, sooner or later someone will raise the question on how to deploy and manage all the common libraries and modules which do not belong to a specific project but are used across the board. A few solutions exists, but one which I particularly like […]
Build and deploy .NET projects with Rake and Albacore
Hello. I wanted to share with you a small rake script that I use to build and deploy my .NET projects, be they web sites or simple DLLs that need consistent versioning and trackability in the wild. If you don’t know rake, it is a task oriented ruby gem that allows to do a lot […]