In this post I'll introduce how to prepare a developer machine to use NHibernate as a ORM (Object Relational Modeling) tool. This approach describes the minimal setup needed to use NHibernate when developing an application. In this article the focus is on TDD (Test Driven Development) and we want...
What can I do if instead of physically delete a record in the database I just want to mark it as deleted? There are at least two possibilities to achieve the desired result put the necessary logic into the repository Write and register a DeleteEvent-Listener for NHibernate The Domain Model Let's...