I have an ASP.NET project in VS 2010 SP 1 and I need to implement several reports. The interesting fact is that I'm only manipulating objects and I have no database direct access.

One C# object can have other child objects or even lists of child objects and is very likely that those details should show up in reports. The classic example is Author - Book: one book may be written by multiple authors and one author may have wrote multiple books.

Are you aware of any reporting tools that make designing reports from objects more easy?

link|improve this question

50% accept rate
feedback

3 Answers

What about the built-in ReportViewer components? They support both

  • database sources and
  • object sources (which seems to be what you need).

Here's an MSDN tutorial:

link|improve this answer
In the msdn sample there is no object that contains a list of objects. In order to include that into the report i would need to use subreports. I'm concerned that relying on subreports will work against me later on during development. – Andrei Jun 17 '11 at 9:33
feedback

I think Stimulsoft Reports could be useful.

Stimulsoft reporting now supports binding to any .NET class; this feature is called business objects in the report designer.

link|improve this answer
feedback

If you're working with data objects and your needs are simple take a look at DevExpress (disclaimer - I'm the CTO at one of their competitors).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.