PandaTech.FileExporter 3.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package PandaTech.FileExporter --version 3.0.3
NuGet\Install-Package PandaTech.FileExporter -Version 3.0.3
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="PandaTech.FileExporter" Version="3.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PandaTech.FileExporter --version 3.0.3
#r "nuget: PandaTech.FileExporter, 3.0.3"
#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.
// Install PandaTech.FileExporter as a Cake Addin
#addin nuget:?package=PandaTech.FileExporter&version=3.0.3

// Install PandaTech.FileExporter as a Cake Tool
#tool nuget:?package=PandaTech.FileExporter&version=3.0.3

File Exporter

Exports given data into csv, xls, xlsx and pdf formats.

Structure

Package consists of static FileExporter class which contains all needed calls to export given data into supported types defined inside ExportType enum.

Supported formats are: CSV, XLS, XLSX and PDF.

Usage

Install package PandaTech.FileExporter from Nexus.

Service

Implement your service which will use the PandaTech.FileExporter package.

public class Service
{
    public byte[] XlsXlsxArray(List<string> list)
    {
        return FileExporter.ToExcelArray(GetDtos(list));
    }

    public byte[] CsvArray(List<string> list)
    {
        return FileExporter.ToCsvArray(GetDtos(list));
    }

    public byte[] PdfArray(List<string> list)
    {
        return FileExporter.ToExcelArray(GetDtos(list));
    }
}
Controller

Use service calls to export returned byte[] data into given format from ExportType enum.

[HttpGet("export-to")]
public IActionResult ExportTo([FromQuery] ExportType exportType, [FromQuery] List<string> data)
{
    try
    {
        return exportType switch
        {
            ExportType.XLSX => File(_service.XlsXlsxArray(data), MimeTypes.XLSX, $"Export.xlsx"),
            ExportType.XLS => File(_service.XlsXlsxArray(data), MimeTypes.XLS, $"Export.xls"),
            ExportType.CSV => File(_service.CsvArray(data), MimeTypes.CSV, $"Export.csv"),
            ExportType.PDF => File(_service.PdfArray(data), MimeTypes.PDF, $"Export.pdf"),
            _ => NoContent() 
        };
    }
    catch (Exception)
    {
        return BadRequest();
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
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
3.0.8 67 5/13/2024
3.0.7 41 5/2/2024
3.0.6 78 4/29/2024
3.0.5 75 4/29/2024
3.0.4 78 4/26/2024
3.0.3 82 4/26/2024
3.0.2 80 4/26/2024
3.0.1 85 4/26/2024
3.0.0 87 4/26/2024
2.0.2 96 4/4/2024

Structure change