Skip to content

Instantly share code, notes, and snippets.

@derans
Created September 23, 2012 22:05
Show Gist options
  • Save derans/3773204 to your computer and use it in GitHub Desktop.
Save derans/3773204 to your computer and use it in GitHub Desktop.
Basic ExportToExcel
public ActionResult ExportToExcel()
{
var records = _getSampleInfoQuery.Execute();
return new ExcelFileResult<SampleInfo>(records);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment