.NET
-
Using NLog with Dependency Injection
In my last post I blogged about using Dependency Injection to break tight coupling between application components. This lets you…
Read More » -
Complete Guide to Lazy Loading – Lazy
In creating performance-centric applications one has to be very cautious about how and when objects are created and destroyed. An…
Read More » -
Repositories, Unit Of Work and ASP.NET MVC
There are a lot of posts discussing repository implementations, unit of work and ASP.NET MVC. This post is an attempt…
Read More » -
List executed code using PostSharp
This post was created to answer a question by Laimonas Simutis on the ALT.NET mailing list – how to list…
Read More » -
Repositories and Single Responsibility from the Trenches
In a project I’m involved with we’ve done what I suspect lots and lots of projects do. We’ve used the…
Read More » -
How to handle errors in ASP.NET MVC
There are several blog posts regarding error handling for ASP.NET MVC. They use everything from Application_Error to exception handling in…
Read More » -
Supercharge Isolate.Verify
At work we use Typemock Isolator for all of our Isolation/Mocking needs. Lately I’ve noticed that my co-workers do not…
Read More » -
Ninject WCF Extensions for RESTful Services
A while ago I blogged about using Ninject for dependency injection with WCF Services. The advantage of using DI is…
Read More » -
Async tests in Silverlight
One of the things that we do is build a lot of stuff in Silverlight, usually, those things are either…
Read More » -
Using IDisposable to write cleaner code
Just before I start I should mention here that this is not a new idea and there is a good…
Read More »