PandaTech.FileExporter
8.0.0
See the version list below for details.
dotnet add package PandaTech.FileExporter --version 8.0.0
NuGet\Install-Package PandaTech.FileExporter -Version 8.0.0
<PackageReference Include="PandaTech.FileExporter" Version="8.0.0" />
<PackageVersion Include="PandaTech.FileExporter" Version="8.0.0" />
<PackageReference Include="PandaTech.FileExporter" />
paket add PandaTech.FileExporter --version 8.0.0
#r "nuget: PandaTech.FileExporter, 8.0.0"
#:package PandaTech.FileExporter@8.0.0
#addin nuget:?package=PandaTech.FileExporter&version=8.0.0
#tool nuget:?package=PandaTech.FileExporter&version=8.0.0
PandaTech.FileExporter
High-performance CSV and XLSX exporting library for .NET 8+ with convention-based defaults, fluent configuration, async streaming, multi-sheet support, and automatic compression.
Installation
dotnet add package PandaTech.FileExporter
Quick Start
1. Register in Program.cs
using FileExporter.Extensions;
var builder = WebApplication.CreateBuilder(args);
// Scan for ExportRule<T> configurations
builder.AddFileExporter(typeof(Program).Assembly);
2. Export Data (Zero Configuration)
using FileExporter.Extensions;
var products = await db.Products.ToListAsync();
// CSV export with automatic file naming and formatting
var csvFile = await products.ToFileFormatAsync(ExportFormat.Csv);
// XLSX export with multi-sheet support for large datasets
var excelFile = await products.ToFileFormatAsync(ExportFormat.Xlsx);
// Return from minimal API
return csvFile.ToFileResult();
That's it! The library uses conventions to:
- Auto-detect property types and apply formatting
- Generate column headers from property names (e.g.,
CreatedDate→ "Created Date") - Apply sensible column widths
- Handle nulls, enums, dates, decimals automatically
Custom Configuration
Define Export Rules
using FileExporter.Rules;
using FileExporter.Enums;
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
public DateTime CreatedDate { get; set; }
public ProductStatus Status { get; set; }
}
public class ProductExportRule : ExportRule<Product>
{
public ProductExportRule()
{
// Custom file name (supports {DateTime} placeholder)
WithName("Product Report {DateTime}");
// Configure columns
RuleFor(x => x.Id)
.WriteToColumn("Product ID")
.HasOrder(1);
RuleFor(x => x.Name)
.WriteToColumn("Product Name")
.HasOrder(2)
.HasWidth(30);
RuleFor(x => x.Price)
.WriteToColumn("Price (USD)")
.HasFormat(ColumnFormatType.Currency)
.HasPrecision(2)
.HasOrder(3);
RuleFor(x => x.CreatedDate)
.WriteToColumn("Created")
.HasFormat(ColumnFormatType.DateTime)
.HasOrder(4);
RuleFor(x => x.Status)
.WriteToColumn("Status")
.WithEnumFormat(EnumFormatMode.Name) // Int, Name, or MixedIntAndName
.HasOrder(5);
}
}
Features
Convention-Based Defaults
Without configuration, the library automatically:
| Property Type | Format Applied | Column Width | Example Output |
|---|---|---|---|
string |
Text | Based on header | "Product Name" |
int, long |
Integer | 12 | 1234 |
decimal, double |
Decimal (2 places) | 12 | 99.99 |
DateTime |
DateTime | 19 | 2024-01-15 14:30:00 |
DateOnly |
Date | 12 | 2024-01-15 |
bool |
Yes/No | 8 | Yes |
enum |
Mixed int + name | Based on header | 1 - Active |
Column Configuration API
| Method | Description | Example |
|---|---|---|
WriteToColumn(string) |
Set column header | .WriteToColumn("Full Name") |
HasOrder(int) |
Set column position | .HasOrder(1) |
HasWidth(int) |
Set column width (chars) | .HasWidth(25) |
HasFormat(ColumnFormatType) |
Set format type | .HasFormat(ColumnFormatType.Currency) |
HasPrecision(int) |
Set decimal places | .HasPrecision(4) |
WithEnumFormat(EnumFormatMode) |
Enum display mode | .WithEnumFormat(EnumFormatMode.Name) |
WithDefaultValue(string) |
Default for nulls | .WithDefaultValue("N/A") |
Transform(Func) |
Custom transformation | .Transform(x => x?.ToUpper()) |
Ignore() |
Exclude from export | .Ignore() |
Format Types
public enum ColumnFormatType
{
Default, // Auto-detect from property type
Text, // Force as text
Integer, // Whole numbers
Decimal, // Fixed decimal places
Currency, // Currency formatting with symbol
Percentage, // Percentage with % symbol
Date, // Date only (yyyy-MM-dd)
DateTime, // Date and time
Boolean // Yes/No
}
Enum Formatting
public enum EnumFormatMode
{
MixedIntAndName, // "1 - Active" (default)
Int, // "1"
Name // "Active"
}
A value that is not a declared member has no name, so MixedIntAndName and Name both render the bare number
(7). Supply an EnumLabelResolver to render something other than the C# member name — see below.
Per-Request Options
An ExportRule is discovered once at AddFileExporter boot and cached for the process lifetime, so nothing on it
can vary per request. ExportOptions is the hook that can. Pass it to any export extension method; every property is
optional and falls back to the rule.
var options = new ExportOptions
{
FileName = "Bestellungen {DateTime}", // used verbatim; {DateTime} is optional
SheetName = "Bestellungen", // XLSX only, truncated to 31 characters
ColumnHeaders = new Dictionary<string, string>
{
[nameof(Order.Status)] = "Status",
[nameof(Order.TotalAmount)] = "Gesamtbetrag"
},
EnumLabelResolver = value => labelByValue.TryGetValue(value, out var label) ? label : string.Empty
};
var file = await orders.ToFileFormatAsync(ExportFormat.Xlsx, options);
Headers, enum labels and names are plain strings, so any language or alphabet works — the file name is written to
Content-Disposition verbatim and the workbook is UTF-8 throughout.
| Property | Effect |
|---|---|
FileName |
Base name, used verbatim. No extension — the format's is appended. {DateTime} is substituted if present, but never appended. |
SheetName |
Worksheet name (XLSX). Defaults to the rule's name without its timestamp. |
ColumnHeaders |
Header text per column, keyed by model property name. Missing or blank entries keep the rule's header. Column selection and order stay the rule's job. |
EnumLabelResolver |
Renders an enum as text, honouring EnumFormatMode: MixedIntAndName still emits "1 - {label}" and Int is still a bare number. Returning null or whitespace falls back to the member name. Called once per enum cell, so close over a resolved lookup rather than querying per value. |
Nothing here mutates the shared rule, so concurrent requests can use different languages safely.
Advanced Features
Multi-Sheet XLSX
Files with >1,048,575 rows automatically split into multiple sheets:
var hugeDataset = await db.Orders.ToListAsync(); // 3 million rows
var file = await hugeDataset.ToFileFormatAsync(ExportFormat.Xlsx);
// Creates single .xlsx with 3 sheets: "Orders", "Orders_2", "Orders_3"
Auto-Compression
Files >10MB automatically compress to ZIP:
var largeExport = await data.ToFileFormatAsync(ExportFormat.Csv);
// If >10MB: returns "Report 2024-01-15.zip" containing "Report 2024-01-15.csv"
// If <10MB: returns "Report 2024-01-15.csv" directly
Async Streaming
IAsyncEnumerable<Product> GetProductsAsync()
{
await foreach (var product in db.Products.AsAsyncEnumerable())
{
yield return product;
}
}
var stream = GetProductsAsync();
var file = await stream.ToCsvAsync();
Custom Transformations
RuleFor(x => x.Email)
.Transform(email => email?.Contains("@") == true
? MaskEmail(email)
: "N/A");
RuleFor(x => x.Price)
.Transform(price => price * 1.20m) // Add 20% markup
.HasFormat(ColumnFormatType.Currency);
RuleFor(x => x.Tags)
.Transform(tags => string.Join(", ", tags)); // List<string> → "tag1, tag2"
Minimal API Integration
app.MapGet("/export/products/csv", async (AppDbContext db) =>
{
var products = await db.Products.ToListAsync();
var file = await products.ToFileFormatAsync(ExportFormat.Csv);
return file.ToFileResult();
});
app.MapGet("/export/products/xlsx", async (AppDbContext db) =>
{
var products = await db.Products.ToListAsync();
var file = await products.ToFileFormatAsync(ExportFormat.Xlsx);
return file.ToFileResult();
});
File Naming
Default naming:
typeof(Product) → "Product 2024-01-15 14:30:00"
Custom naming with placeholder:
WithName("Sales Report {DateTime}")
// Output: "Sales Report 2024-01-15 14:30:00"
WithName("Sales Report {DateTime} Final")
// Output: "Sales Report 2024-01-15 14:30:00 Final"
A name containing {DateTime} is taken exactly as written — no title-casing is applied, since you have already
spelled it the way you want it.
Fixed name:
WithName("Monthly_Export")
// Output: "Monthly_Export 2024-01-15 14:30:00" (DateTime still appended)
The timestamp is resolved per export, not when the rule is constructed, so every download carries the time it was actually requested. Names are capped at 100 characters.
Per-request name:
await data.ToFileFormatAsync(ExportFormat.Xlsx, new ExportOptions { FileName = "Q1 Orders" });
// Output: "Q1 Orders.xlsx" — used verbatim, no timestamp appended
Extension Methods
IEnumerable<T>
var file = await data.ToFileFormatAsync(ExportFormat.Csv);
var file = await data.ToFileFormatAsync(ExportFormat.Xlsx);
var file = await data.ToFileFormatAsync(ExportFormat.Xlsx, options);
IAsyncEnumerable<T>
var file = await asyncData.ToCsvAsync();
var file = await asyncData.ToXlsxAsync();
var file = await asyncData.ToFileFormatAsync(ExportFormat.Csv);
var file = await asyncData.ToCsvAsync(options);
var file = await asyncData.ToXlsxAsync(options);
var file = await asyncData.ToFileFormatAsync(ExportFormat.Csv, options);
An undefined ExportFormat — including the 0 an omitted query-string value binds to — throws
ArgumentOutOfRangeException before any work is done.
ExportFile
var file = await data.ToFileFormatAsync(ExportFormat.Xlsx);
// Get file properties
string name = file.Name; // "Products 2024-01-15 14:30:00.xlsx"
string mimeType = file.MimeType; // "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
byte[] content = file.Content;
// Return from API
return file.ToFileResult();
Performance
Built on industry-standard libraries:
- CsvHelper (33.1.0) - Fast, reliable CSV parsing/writing
- SpreadCheetah (1.25.0) - High-performance XLSX generation
Benchmarks (1M rows, 10 columns):
- CSV export: ~3 seconds, ~100MB file
- XLSX export: ~8 seconds, ~40MB file
- Memory: Streaming-based, low memory footprint
Limits
| Feature | Limit | Behavior |
|---|---|---|
| XLSX rows per sheet | 1,048,575 | Auto-creates additional sheets |
| XLSX sheet name | 31 characters | Auto-truncates |
| File name | 100 characters | Auto-truncates |
| File size before zip | 10 MB | Auto-compresses to ZIP |
Upgrading to 8.0.0
Public API is source-compatible — every 7.x call still compiles. Four behaviours changed:
| Change | Why |
|---|---|
| The file name's timestamp is stamped at export time, not at rule construction | A rule is a singleton, so every download shared the process's start time |
| The worksheet name is the rule's name without its timestamp | It used to be the stamped name truncated to 30 characters |
MixedIntAndName / Name render an undefined enum value as the bare number |
XLSX wrote "7 - " and CSV wrote "7 - 7" |
ColumnFormatType.Percentage treats the value as a fraction in CSV, matching XLSX |
0.5532 read 0.55% in CSV and 55.32% in XLSX |
WithName("... {DateTime} ...") actually substitutes the placeholder |
Title-casing rewrote it to {Date Time} first, so the literal token shipped in the file name |
| Name cap raised from 30 to 100 characters | 30 minus a 19-character timestamp truncated almost every real name |
Complete Example
// Model
public class Order
{
public int OrderId { get; set; }
public string CustomerName { get; set; }
public decimal TotalAmount { get; set; }
public DateTime OrderDate { get; set; }
public OrderStatus Status { get; set; }
public string? Notes { get; set; }
}
// Export configuration
public class OrderExportRule : ExportRule<Order>
{
public OrderExportRule()
{
WithName("Order Export {DateTime}");
RuleFor(x => x.OrderId)
.WriteToColumn("Order #")
.HasOrder(1);
RuleFor(x => x.CustomerName)
.WriteToColumn("Customer")
.HasWidth(30)
.HasOrder(2);
RuleFor(x => x.TotalAmount)
.WriteToColumn("Total")
.HasFormat(ColumnFormatType.Currency)
.HasPrecision(2)
.HasOrder(3);
RuleFor(x => x.OrderDate)
.WriteToColumn("Date")
.HasFormat(ColumnFormatType.DateTime)
.HasOrder(4);
RuleFor(x => x.Status)
.WriteToColumn("Status")
.WithEnumFormat(EnumFormatMode.Name)
.HasOrder(5);
RuleFor(x => x.Notes)
.WriteToColumn("Notes")
.WithDefaultValue("No notes")
.HasOrder(6);
}
}
// Usage
var orders = await db.Orders.ToListAsync();
var file = await orders.ToFileFormatAsync(ExportFormat.Xlsx);
return file.ToFileResult();
License
MIT
| Product | Versions 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. net9.0 is compatible. 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 is compatible. 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. |
-
net10.0
- CsvHelper (>= 33.1.0)
- SpreadCheetah (>= 1.28.0)
-
net8.0
- CsvHelper (>= 33.1.0)
- SpreadCheetah (>= 1.28.0)
-
net9.0
- CsvHelper (>= 33.1.0)
- SpreadCheetah (>= 1.28.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on PandaTech.FileExporter:
| Package | Downloads |
|---|---|
|
Pandatech.SharedKernel
Opinionated ASP.NET Core 10 infrastructure kernel: OpenAPI (Swagger + Scalar), Serilog, MediatR, FluentValidation, CORS, SignalR, OpenTelemetry, health checks, maintenance mode, resilience pipelines, and shared utilities. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 8.1.0 | 0 | 7/27/2026 |
| 8.0.0 | 27 | 7/26/2026 |
| 7.0.1 | 121 | 7/6/2026 |
| 7.0.0 | 216 | 2/28/2026 |
| 6.0.2 | 171 | 1/26/2026 |
| 6.0.1 | 154 | 12/28/2025 |
| 6.0.0 | 123 | 12/28/2025 |
| 5.0.3 | 245 | 12/5/2025 |
| 5.0.2 | 235 | 12/4/2025 |
| 5.0.1 | 268 | 12/4/2025 |
| 5.0.0 | 723 | 12/1/2025 |
| 4.1.2 | 306 | 8/16/2025 |
| 4.1.1 | 220 | 8/16/2025 |
| 4.1.0 | 220 | 8/16/2025 |
| 4.0.7 | 315 | 8/7/2025 |
| 4.0.6 | 308 | 6/1/2025 |
| 4.0.5 | 273 | 6/1/2025 |
| 4.0.4 | 235 | 5/19/2025 |
| 4.0.3 | 268 | 4/11/2025 |
| 4.0.2 | 362 | 3/10/2025 |
Adds ExportOptions for per-request overrides: localized column headers, an enum label resolver, and explicit file/sheet names — none of which were reachable before, because an ExportRule is a boot-time singleton. The file name's timestamp is now stamped at export time instead of at rule construction, and the name cap is raised from 30 to 100 characters. An undefined export format is rejected explicitly. Behaviour fixes: MixedIntAndName no longer renders "7 - " for undefined enum values, CSV percentages now agree with XLSX, WithName's {DateTime} placeholder is actually substituted instead of shipping as a literal, and the worksheet name no longer carries a truncated timestamp.