tags:

views:

34

answers:

1

How can I iterate throw mapped entities and get all data from database? I dont know on first place what is mapped by NHibernate...

Configuration configuration = SessionProvider.Configuration;
var mappedClasses = configuration.ClassMappings;

IRepository repository = new Repository();

foreach (var mappedClass in mappedClasses)
{
    var enumerable = repository.GetAll<mappedClass>();//<-- this dont work
}
+2  A: 

If you query on Object, it queries all mapped classes in the session, so the following returns a list of all records in your database:

var completeList = session.CreateCriteria<Object>().List();
Pieter