Author: Luxspes | Posted on: 4/23/2006 4:45:49 AM | Views : 1335

I was just wondering... how many of you have tried using an Object Relational Mapper... perhaps something like NHibernate instead of the DataSet:NHibernate is a port of Hibernate Core
for Java to the .NET Framework. It handles persisting plain .NET
objects to and from an underlying relational database. Given an XML
description of your entities and relationships, NHibernate
automatically generates SQL for loading and storing the objects.
Optionally, you can describe your mapping metadata with attributes in
your source code.
NHibernate
supports transparent persistence, your object classes don't have to
follow a restrictive programming model. Persistent classes do not need
to implement any interface or inherit from a special base class. This
makes it p ...

Go to the complete details ...