|
Re: NHibernate 1.2 Brings Java O/R Mapping Framework to .NET 2.0
|
Posted: May 5, 2007 1:27 PM
|
|
> > Actually, there are no O/R mapping facilities in .NET > at > > this time. Microsoft is expected to add it in .NET 3.5, > > the so-called Entity Framework, coupled with LINQ > > techniques. NHibernate is less coupled with language > and > > has being used for years already. > > Well, the .NET DataSet class provides object-oriented > access to databases, but I guess it doesn't strictly > qualify as an O/R Mapping Framework.
Object-oriented database access API and O/R Mapping framework are two completely different things! As a matter of fact, most O/R mapping frameworks under the hood usually use some OO database access API, like JDBC or ADO.NET. O/R Mapping frameworks maps domain driven object design to relational database, where OO DB API can be used with designs other then domain driven.
|
|