Reports, stats,...

Posts   
 
    
llblPowa
User
Posts: 41
Joined: 19-Nov-2006
# Posted on: 07-Dec-2006 04:35:37   

v2/web

Hello Guys,

How do you manage your reports/stats with LLBL?

Do you use stored proc and return a datatable? Do you use TypedList? Or do you use anything else like entitycollection with prefetch or...?

Cheers,

LLBLPowa.

Walaa avatar
Walaa
Support Team
Posts: 14950
Joined: 21-Aug-2005
# Posted on: 07-Dec-2006 07:51:34   

It depends, but since reports are Read-Only data, I always try to use DataTables using Typed Lists or Dynamic Lists (not via Stored procedures).

jeffreygg
User
Posts: 805
Joined: 26-Oct-2003
# Posted on: 07-Dec-2006 08:47:24   

Depends on the type of report. If it's a detail style report with few transforms I'll use entitycollections or dynamic lists.

If it's a summary report with a lot of aggregates and nested queries and weird joins I'll put it into a typed view or sproc.

Jeff

Chester
Support Team
Posts: 223
Joined: 15-Jul-2005
# Posted on: 11-Dec-2006 00:28:03   

It also depends on your reporting tools. If you're just writing HTML reports using ASP.NET for instance, you are not hemmed in to a particular style as if you were using Crystal reports or another banded report writer (ActiveReports for instance).