EPPlusEnumerable 5.0.0
dotnet add package EPPlusEnumerable --version 5.0.0
NuGet\Install-Package EPPlusEnumerable -Version 5.0.0
<PackageReference Include="EPPlusEnumerable" Version="5.0.0" />
paket add EPPlusEnumerable --version 5.0.0
#r "nuget: EPPlusEnumerable, 5.0.0"
// Install EPPlusEnumerable as a Cake Addin #addin nuget:?package=EPPlusEnumerable&version=5.0.0 // Install EPPlusEnumerable as a Cake Tool #tool nuget:?package=EPPlusEnumerable&version=5.0.0
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:
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.
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- EPPlus (>= 5.0.4)
- System.ComponentModel.Annotations (>= 4.7.0)
- System.Drawing.Common (>= 4.7.0)
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 |
---|
- Targets .NET Standard 2.0
- Supports EPPlus 5.x
- Breaking change: removes support for MetadataTypeAttributes as they are not part of .NET Standard 2.0