PandaTech.FluentImporter
2.0.13
dotnet add package PandaTech.FluentImporter --version 2.0.13
NuGet\Install-Package PandaTech.FluentImporter -Version 2.0.13
<PackageReference Include="PandaTech.FluentImporter" Version="2.0.13" />
paket add PandaTech.FluentImporter --version 2.0.13
#r "nuget: PandaTech.FluentImporter, 2.0.13"
// Install PandaTech.FluentImporter as a Cake Addin #addin nuget:?package=PandaTech.FluentImporter&version=2.0.13 // Install PandaTech.FluentImporter as a Cake Tool #tool nuget:?package=PandaTech.FluentImporter&version=2.0.13
Pandatech FluentImporter
The Pandatech.FluentImporter
is a lightweight NuGet package designed to facilitate the importation of CSV and Excel data
into .NET 8 or higher applications. Featuring a fluent API, the FluentImporter enables developers to specify custom import
rules for each model property, making the data import process both straightforward and flexible.
Features
- Effortlessly import CSV and XLSX (excel) data.
- Define custom import rules using a fluent API.
Installation
You can install Pandatech FileImporter via NuGet Package Manager or .NET CLI:
dotnet add package PandaTech.FluentImporter
Usage
Define Model
First, define a model class with properties that represent the data fields you wish to import. For example:
public class FileData
{
public long Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public DateTime Date { get; set; }
public string? Comment { get; set; }
public DateTime CreatedAt { get; set; }
public string CreatedBy { get; set; }
}
Define Import Rules
Next, create a class for import rules by inheriting from ImportRule<TModel>
and define your rules using the fluent API. For example:
public class FileDataImportRule : ImportRule<FileData>
{
public FileDataImportRule()
{
RuleFor(x => x.Name).NotEmpty();
RuleFor(x => x.Description).ReadFromColumn("Description text").Default("No Description");
RuleFor(x => x.Date).ReadFromColumn("Date").Convert(DateTime.Parse);
RuleFor(x => x.Comment).ReadFromColumn("Comment");
RuleFor(x => x.Id).ReadFromColumn("Id").Convert(s => BaseConverter.PandaBaseConverter.Base36ToBase10(s)!.Value);
RuleFor(x => x.CreatedAt).WriteValue(DateTime.UtcNow);
RuleFor(x => x.CreatedBy).WriteValue("System");
RuleFor(x => x.CreatedBy).ReadFromModel(x => x.CreatedBy + " - 1");
}
}
Import Data
Finally, use the methods provided in your import rule instance to import data from CSV, Excel, or in-memory sources.
Import from In-Memory Data
IEnumerable<TModel> GetRecords(IEnumerable<Dictionary<string, string>> data)
Import from CSV
List<TModel> ReadCsv(Stream csvStream)
List<TModel> ReadCsv(string csvFilePath)
Import from Excel
List<TModel> ReadXlsx(Stream stream)
List<TModel> ReadXlsx(string csvFilePath)
Example
var importRule = new FileDataImportRule();
var csvFilePath = "path/to/your/file.csv";
var importedData = importRule.ReadCsv(csvFilePath);
Contributing
Contributions are welcome! Please feel free to submit issues, feature requests, or pull requests.
License
This project is licensed under the MIT License.
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. |
NuGet packages (1)
Showing the top 1 NuGet packages that depend on PandaTech.FluentImporter:
Package | Downloads |
---|---|
Pandatech.ResponseCrafter
Handling exceptions, custom Dtos. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.13 | 143 | 9/4/2024 |
2.0.12 | 391 | 5/16/2024 |
2.0.11 | 98 | 5/16/2024 |
2.0.10 | 85 | 5/16/2024 |
2.0.9 | 109 | 5/15/2024 |
2.0.8 | 90 | 5/13/2024 |
2.0.7 | 99 | 5/8/2024 |
2.0.6 | 160 | 5/6/2024 |
2.0.5 | 108 | 5/6/2024 |
2.0.4 | 115 | 5/5/2024 |
2.0.3 | 93 | 5/3/2024 |
2.0.2 | 82 | 5/3/2024 |
2.0.1 | 120 | 4/18/2024 |
2.0.0 | 100 | 4/17/2024 |
Boolean extended support