2009/4/7 Ayende Rahien <[email protected]>
> would you mind sharing it :-)
>
In NH2.0.0 the code is portable and multi-RDBMS
IEnumerable<Category> pl = session.CreateQuery("from
Category").List<Category>();
In NH2.1.0 this code is NOT portable and NOT multi-RDBMS, so far
IEnumerable<Category> pl = session.CreateQuery("from
Category").Future<Category>();
What should write, the developer, if he want a multi-RDBMS solution ?
The 2 lines the developer should write are the same we should write in the
nh-core
--
Fabio Maulo