Book review: Applied Microsoft .NET Framework Programming

Book data

  • Titel: Applied Microsoft .NET Framework programming
  • Author: Jeffrey Richter
  • ISBN: 0-7356-1422-9

Review

The book starts off with an introduction of the .NET platform as to how it fits in the Microsoft vision of application and application development for the future. Then the book is divided into several parts.

Continue reading

NHibernate Part 2: CRUD with NHibernate

The Code

Updated code available for NHibernate 2.0.1.GA here.
The toolingset used is Visual Studio 2008 and Sql Server 2008

In the previous installment in this series of articles about NHibernate I explained a simple Hello World application which uses NHibernate to read messages from a database.

In this article we will learn how to perform basic CRUD operations. The CRUD acronym stants for the 4 operations which can be performed on data stored on a medium:

  1. Create
  2. Read
  3. Update
  4. Delete

We will continue to work with the database created in Part 1. All sample output also assumes you have excercised Part 1. Continue reading