EPPlusEnumerable 1.5.0

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package EPPlusEnumerable --version 1.5.0
                    
NuGet\Install-Package EPPlusEnumerable -Version 1.5.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EPPlusEnumerable" Version="1.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EPPlusEnumerable" Version="1.5.0" />
                    
Directory.Packages.props
<PackageReference Include="EPPlusEnumerable" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EPPlusEnumerable --version 1.5.0
                    
#r "nuget: EPPlusEnumerable, 1.5.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=EPPlusEnumerable&version=1.5.0
                    
Install as a Cake Addin
#tool nuget:?package=EPPlusEnumerable&version=1.5.0
                    
Install as a Cake Tool

EPPlusEnumerable

Easily create multi-worksheet Excel documents from any .NET object collection.

Usage

Let's say you're working on an ASP.NET web app and want to create a report of all users and orders.

public ActionResult DownloadReport()
{
    var data = new List<IEnumerable<object>>();
    
    using (var db = new SampleDataContext())
    {
        data.Add(db.Users.OrderBy(x => x.Name).ToList());

        foreach(var grouping in db.Orders.OrderBy(x => x.Date).GroupBy(x => x.Date.Month))
        {
            data.Add(grouping.ToList());
        }
    }
    
    var bytes = Spreadsheet.Create(data);
    return File(bytes, "application/vnd.ms-excel", "MySpreadsheet.xlsx");
}

That will give you a nicely-formatted Excel spreadsheet with tabs for both "Users" and "Orders," like so:

output

There's also a SpreadsheetLinkAttribute class which you can use to generate links between tabs on your spreadsheet.

[DisplayName("Orders"), SpreadsheetTableStyle(TableStyles.Medium16)]
public class Order
{
    public int Number { get; set; }

    [SpreadsheetCellStyle(bold: true, backgroundHtmlColor: "#00cc00", fontHtmlColor: "lime")]
    public string Item { get; set; }

    [SpreadsheetLink("Customers", "Name")]
    public string Customer { get; set; }

    [DisplayFormat(DataFormatString = "{0:c}")]
    public decimal Price { get; set; }

    [SpreadsheetTabName(FormatString = "{0:MMMM yyyy}")]
    public DateTime Date { get; set; }
}

In this example, the "Customer" values in the Orders tab will be linked to the corresponding Customers tab row where the Name is equal to the value of the Order object's Customer property.

In addition, the SpreadsheetTabName attribute specifies that the value of the given property should be used to name the tab in Excel. The first value of the collection will be used to generate the name of the tab. You can optionally specify a FormatString as above.

links

There's also a SpreadsheetExclude attribute you can use if you don't want to include a column for a given property in the generated spreadsheet.

P.S. DisplayName or Display(Name="") attributes will be used for worksheet names if used on the class, or column headers if used on a property.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated

New SpreadsheetCellStyle attribute enables specifying text alignment, word wrap, font and background color and bold for the cells generated from a given property.