views:

44

answers:

2

Hi all,

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?

+4  A: 

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.

Diego Mijelshon
Would you please specify an example of second way? "One that supports receiving an arbitrary list of .NET objects..."?
afsharm
Crystal Reports
Diego Mijelshon
A: 

The Telerik reporting has pretty good handling for using an ORM as a datasource, it supports Entity Framework and OpenAccess (Telerik's ORM) natively and its ObjectDataSource should work well with nHibernate

http://www.telerik.com/help/reporting/objectdatasource.html

Tom