Canducci.Excel
1.3.0
dotnet add package Canducci.Excel --version 1.3.0
NuGet\Install-Package Canducci.Excel -Version 1.3.0
<PackageReference Include="Canducci.Excel" Version="1.3.0" />
<PackageVersion Include="Canducci.Excel" Version="1.3.0" />
<PackageReference Include="Canducci.Excel" />
paket add Canducci.Excel --version 1.3.0
#r "nuget: Canducci.Excel, 1.3.0"
#:package Canducci.Excel@1.3.0
#addin nuget:?package=Canducci.Excel&version=1.3.0
#tool nuget:?package=Canducci.Excel&version=1.3.0
Canducci Excel
Classes
1) Class
HeaderHeaderCollectionListToExcel
2) Extension method to IEnumerable, IEnumerable<T>, IQueryable e IQueryable<T>
bool ToExcelSaveAs<T>byte[] ToExcelByte<T>
Package Installation (NUGET)
PM> Install-Package Canducci.Excel
How to use?
Declare o namespace using Canducci.Excel;
Array
//Setting the header
HeaderCollection headerData = new HeaderCollection();
headerData.Add(new Header("DateCreated", 1));
//Array
var n = new DateTime[] { DateTime.Now.Date.AddDays(-15), DateTime.Now.Date.AddDays(-16) };
//Using the extensive method to generate the file and write to disk.
n.ToExcelSaveAs("Result\\DatasSimples.xlsx", headerData);
Array two-dimensional
int[,] c = new int[2,2];
c[0, 0] = 1; c[0, 1] = 2;
c[1, 0] = 3; c[1, 1] = 4;
//Setting the header
HeaderCollection headersArrayBi = new HeaderCollection();
headersArrayBi.Add(2, "Col-");
//Using the extensive method to generate the file and write to disk.
c.ToExcelSaveAs<int[,]>("Result\\ArrayBi2Dimensioanl.xlsx", headersArrayBi);
List
//Setting the header
HeaderCollection headers = new HeaderCollection();
headers.Add(new Header("Id", 1));
headers.Add(new Header("Nome", 2));
headers.Add(new Header("Valor", 3));
headers.Add(new Header("Data de Validade", 4));
headers.Add(new Header("Hora Stamp", 5));
//Manually creating a typed list
IList<Test> tests = new List<Test>();
tests.Add(new Test() { Id = 1, Nome = "Test 1", Valor = 10M,
Data = DateTime.Now.Date, Time = DateTime.Now.TimeOfDay });
tests.Add(new Test() { Id = 2, Nome = "Test 2", Valor = 2000.69M,
Data = DateTime.Now.Date, Time = DateTime.Now.TimeOfDay });
tests.Add(new Test() { Id = 3, Nome = "Test 3", Valor = 10M,
Data = DateTime.Now.Date, Time = DateTime.Now.TimeOfDay });
tests.Add(new Test() { Id = 4, Nome = "Test 4", Valor = 20M,
Data = DateTime.Now.Date, Time = DateTime.Now.TimeOfDay });
tests.Add(new Test() { Id = 5, Nome = "Test 5", Valor = 10M,
Data = DateTime.Now.Date, Time = DateTime.Now.TimeOfDay });
tests.Add(new Test() { Id = 6, Nome = "Test 6", Valor = 2000.69M,
Data = DateTime.Now.Date, Time = DateTime.Now.TimeOfDay });
tests.Add(new Test() { Id = 7, Nome = "Test 7", Valor = 10M,
Data = DateTime.Now.Date, Time = DateTime.Now.TimeOfDay });
tests.Add(new Test() { Id = 8, Nome = "Test 8", Valor = 20M,
Data = DateTime.Now.Date, Time = DateTime.Now.TimeOfDay });
//Usando o método extensivo para gerar o arquivo e gravar em disco.
tests.ToExcelSaveAs("Result\\List.xlsx", headers);
Entity Framework (IQueryable e IEnumerable)
Simples Console ou Desktop
using (AdventureWorks2014Entities db = new AdventureWorks2014Entities())
{
//IQueryable<Person>
var Query = db.Person
.AsNoTracking()
.AsQueryable();
//Setting the header
HeaderCollection headerEF = new HeaderCollection();
headerEF.Add(new Header("Primeiro Nome", 1));
//Using the extensive method to generate the file and write to disk.
Query.Select(x => x.FirstName)
.Take(10)
.ToExcelSaveAs("Result\\Forma1.xlsx", headerEF);
}
ASP.NET MVC
[Route("excel")]
public FileContentResult CreateExcel()
{
//Array de bytes
byte[] fileByte = null;
using (AdventureWorks2014Entities db = new AdventureWorks2014Entities())
{
//Setting the header
HeaderCollection headers = HeaderCollection.Create();
headers.Add(Header.Create("Id", 1));
headers.Add(Header.Create("Sexo", 2));
headers.Add(Header.Create("Data", 3));
headers.Add(Header.Create("Trabalho", 4));
//Using the Extensive Method to Generate an Array of Bytes in Memory
//by the extensive method ToExcelByte
fileByte = db.Employee
.AsNoTracking()
.Select(x => new
{
x.BusinessEntityID,
x.Gender,
x.HireDate,
x.JobCandidate
})
.Take(20)
.ToExcelByte(headers);
}
//The browser will download the file
return File(fileByte, ContentTypeExcel.Xlsx.ToValue(), "file.xlsx");
}
ASP.NET MVC ListToExcel
[Route("excel")]
public FileContentResult CreateExcel1()
{
//Array of Bytes
byte[] fileByte = null;
//Entity Framework and MemoryStream
using (AdventureWorks2014Entities db = new AdventureWorks2014Entities())
using (System.IO.MemoryStream Stream = new System.IO.MemoryStream())
{
//Setting the header
HeaderCollection Headers = HeaderCollection.Create();
Headers.Add(Header.Create("Departamento", 1));
Headers.Add(Header.Create("Razão Social", 2));
//Building Query and Returning an IQueryable
IQueryable Query = db.Department.Select(x => new { x.DepartmentID, x.Name }).AsQueryable();
//Instantiating the ListToExcel class
IListToExcel<Department> listDep = new ListToExcel<Department>(Query, Headers);
//SaveAs passing values to the MemoryStream (`Stream`)
listDep.SaveAs(Stream);
//Assigning values to Array of Bytes
fileByte = Stream.ToArray();
}
//The browser will download the file
return File(fileByte, ContentTypeExcel.Xlsx.ToValue(), "file.xlsx");
}
ASP.NET WebForms
protected void BtnEnviar_Click(object sender, EventArgs e)
{
var Items = new[]
{
new {Id = 1, Name = "Id 1", Value = 150.00M},
new {Id = 2, Name = "Id 2", Value = 250.25M},
new {Id = 3, Name = "Id 3", Value = 450.00M}
}.ToArray();
byte[] ArrayOfBytes = Items.ToExcelByte();
Response.ClearContent();
Response.ClearHeaders();
Response.AddHeader("content-disposition", "attachment; filename=file.xls");
Response.ContentType = "application/ms-excel";
Response.BinaryWrite(ArrayOfBytes);
Response.End();
}
Notes:
It is not mandatory to use the class HeaderCollection, but it is a way of setting the title and order of each column. The order of values must also follow the order of what was placed in each title always starting from number 1 (ex. 1,2,3, being less than or equal to 0 (zero) causes an Exception).
Example:
HeaderCollection Headers = HeaderCollection.Create();
Headers.Add(Header.Create("Departamento", 1));
Headers.Add(Header.Create("Razão Social", 2));
In the example above, two columns were created starting with the Department and the next Social Title.
The file generated in Excel has the purpose of simple transport of each information, taking its type from each line and column corresponding to what was sent.
The package has no layout formatting (although the title is centralized by default and the columns follow the formatting according to the type sent), fonts, colors, etc., the concern is just sending an information to be modified in an excel file.
The generated file is 100% compatible with Microsoft Office Excel
| 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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 is compatible. |
| .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
- ClosedXML (>= 0.105.0)
- Microsoft.CSharp (>= 4.7.0)
- System.Memory (>= 4.6.3)
-
.NETStandard 2.1
- ClosedXML (>= 0.105.0)
- Microsoft.CSharp (>= 4.7.0)
- System.Memory (>= 4.6.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Update ClosedXML 0.105.0