Major updates to doddlereport, get it on nuget

1 minute read

DoddleReport automatically generates tabular reports from any IEnumerable datasource. Out of the box it can render reports to Excel, PDF, HTML, and CSV – fully pluggable of course. I designed the project to provide reporting output over the LINQ queries we had already written for the application, but maybe you can find other uses for it.

 

So what does it generate?

Excel Report

  • Automatic Sticky/Frozen Headers stay at the top when scrolling through the data
  • See it live!

CSV/Delimited

doddlexlsreport_thumb17 

doddleTxtReport_thumb

PDF Report

  • Automatically repeat title, column headers, and page numbers on every page
  • See it live!

HTML Report

doddlepdfreport_thumb

doddleHtmlReport_thumb

Basic Usage

// Get the data for the report (any IEnumerable will work)
var query = ProductRepository.GetAll();
var totalProducts = query.Count;
var totalOrders = query.Sum(p => p.OrderCount);


// Create the report and turn our query into a ReportSource
var report = new Report(query.ToReportSource());


// Customize the Text Fields
report.TextFields.Title = "Products Report";
report.TextFields.SubTitle = "This is a sample Doddle Report";
report.TextFields.Footer = "Copyright 2011 © The Doddle Project";

 

Get Started!

New to DoddleReport?

 

Updated:

Leave a Comment