Tag Archives: ASP.NET

New Github account

I’ve opened a Github account where i keep some stuff I’ve been playing with recently. At the moment is mostly related to doing DDD with CQRS and Event Sourcing.

I’ve created a sample project to demonstrate the concepts. Here is a short description of the sample:

Sample project demonstrating CQRS & Event Sourcing =================================================

The sample uses the following projects from Jonathan Oliver (https://github.com/joliver)

*… read full article

C# Extension Methods

After a few months I’ve enjoyed the newly ( or not ) added extension methods in 3.0 yesterday i discovered that one of the assumptions I’ve made about them was false. My assumption was that if the instance on witch you call an extension method is NULL you would get a NullReferenceException. Turns out it’s not the case and you can call the extension method on a null reference… read full article

ASP.NET MVC or ASP.NET just got plesent

I’ve been really busy the last months with the new job where we use c#. I’ve grown found to it … it has a lot of nice features … lambda expressions, anonymous types, generic types. Sure there are a lot of thing that can be improved like real generic types ( aka C++ templates ) but it’s a really reliable tool.

In the past I’ve worked on a few… read full article

ASP.NET 2.0 and SQLServer 2000 Transactions

The new ADO.NET 2.0 and it’s typed datasets and table adapters are very useful tools for creating a DAL in you application. Still when working with SQLServer 2000 implementing transactions is a bit tricky. … read full article