25 Mar
2009

FubuMVC From Scratch – Part 4 Persistence

Previous posts in series: FubuMVC From Scratch Part 1 ? Basic project structure setup FubuMVC From Scratch Part 2 ? FubuMVC configuration and Controller setup FubuMVC From Scratch ? Part 3 (Adding View to project) Persistence is a requirement in virtually every application that we write today, and now the time has come for us […]

Read More
21 Mar
2009

One Scenario Where the System.DirectoryServices. AccountManagement API Falls Down

About a year ago, I wrote a post about Directory Programming with System.DirectoryServices. AccountManagement. I’ve been using the AccountManagement API of the .NET 3.5 framework since then and I still like its simplicity over the raw API of the System.DirectoryServices namespace. Over the past year, however, I’ve encountered one scenario where I was forced to […]

Read More
21 Mar
2009

Be Careful With the var Keyword and Expression Builders

I just want to point out a small tidbit I ran into earlier this week. I was using the following simplified expression builder that provides a fluent interface for creating an instance of a Product. public class Product { public Double Price { get; private set; } public String Name { get; private set; } […]

Read More
18 Mar
2009

Code Cast #25 – MassTransit

Dru Sellers and Chris Patterson joined us to talk about their minimalist service bus for .NET, MassTransit. Not only are these guys expert enterprise architects, but they?re just plain funny, too. Join Elegant Coders Jarod Ferguson and David Starr for this great conversation on Event Driven Architecture with Doktor Dru and Phat Boy G. MassTransit […]

Read More