Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any NHibernate report generator?

There are many report generators for MySql and MS SQL Server. For example this one for MySql. We have a large web application based on NHibernate and I'm wondering if there is any report generator that works on our NHibernate mapped entities?

like image 481
Afshar Mohebi Avatar asked Oct 21 '10 13:10

Afshar Mohebi


1 Answers

AFAIK, there are no NHibernate-specific report engines, which makes sense, as NHibernate is not designed for reporting.

You can either use one for the DB you are using with NHibernate, or one that supports receiving an arbitrary list of .NET objects, and pass the result of an NH query.

like image 184
Diego Mijelshon Avatar answered Nov 15 '22 08:11

Diego Mijelshon