Monthly Archives: December 2009

Three new featurelets for Fluent NHibernate

Lately I have been using Fluent NHibernate and NHibernate respectively for my ORM (Object-Relational Mapping) when working on my top secret pet project. Simply put – it’s great. Mapping is done using a fluent C# interface which makes use of …

Read more »

How to avoid passing property names as strings using C# 3.0 Expression Trees

Referencing property names via strings is evil. Consider this simplistic example: If at some point the property gets renamed the code will compile fine but a bug will be introduced as all those strings that contain the property name will …

Read more »