EasyCsv.Files 1.0.3

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

// Install EasyCsv.Files as a Cake Tool
#tool nuget:?package=EasyCsv.Files&version=1.0.3

EasyCsv Nuget

EasyCsv is a simple and efficient .NET library for handling CSV files in your projects. With a fluent user-friendly API, it allows you to easily read, write, and manipulate CSV files with a minimal amount of code.

Features

  • Read and write CSV files
  • Fluent API for method chaining
  • Perform basic operations on CSV files, such as adding or removing columns, filtering rows, sorting data, and replacing values in a column
  • Support for dependency injection

Installation

Install the EasyCsv package via NuGet:

NuGet\Install-Package EasyCsv

Usage

Add EasyCsv services to your .NET project

In your Startup.cs or in the class where you configure your services, add the following code to register EasyCsv services:

public void ConfigureServices(IServiceCollection services)
{
    services.AddEasyCsvServices();
    // services.AddEasyCsvFactory();
    // services.AddEasyFileCsvFactory();
}

Read a CSV file

The is automatically done when you use the 'IEasyCsvServiceFactory' or 'IEasyFileCsvServiceFactory' factory to create your 'ICsvService'.

[Inject] private IEasyFileCsvServiceFactory EasyCsvServiceFactory { get; set; }

=================================================================================================================

IBrowserFile file = files[0];
var easyCsv = await EasyCsvServiceFactory.FromIBrowserFileAsync(file)
// You can access the FileContentStr, FileContentBytes, and create C# Objects using GetRecords<T> at this point

Manipulate CSV data

EasyCsv provides a set of methods for manipulating CSV data. Some examples include:

No matter what you manipulate, don't forget to call csvService.CalculateFileContent() after you are done doing your manipulations. csvService.CsvContent is the only content that is always up to date. FileContentStr and FileContentBytes are calculated when you create an ICsvService, after that they are only calculated when csvService.CalculateFileContent() is called.

Remove a column:
var easyCsv = csvServiceFactory.CreateFromBytes(fileContent)
easyCsv.RemoveColumn("header2");
Add column with default value
easyCsv.AddColumn("column name", "value given to all rows in column/header field", upsert: true);
Replace header row

You can replice all the headers in the header row of this CSV. The count of new header row must match count of the current CsvContent

List<string> newHeaderRow = new () { "header1", "header2", "header3" }
easyCsv.ReplaceHeaderRow(newHeaderRow);
Filter rows:

This would remove any row where the value of header1 is less than 10. Would throw an error if any value couldn't be converted to an int.

easyCsv.FilterRows(row => (int)row["header1"] > 10);
Replace values in a column:
var valueMapping = new Dictionary<object, object>
{
    { "OldValue", "NewValue" }
};
easyCsv.ReplaceValuesInColumn("header1", valueMapping);
Sort data by column:

The easiest way is to sort by a column to give them in alphabetical order based on that column, but you can also provide a Func<IDictionary<string, object>, TKey>. to sort like this csvService.SortCsv(row => row["FieldName"].ToString().Length, ascending: false);. This would sort rows by the lengths of fields in column "FieldName"

easyCsv.SortCsv("header1", ascending: true);

Read directly to objects

Do whatever operations you need to the csv, then read it directly into objects

List<Person> easyCsv.GetRecordsAsync<Person>();

Chain Method Calls Fluently

var newRow2Columns = new Dictionary<string, object>()
{
    {"header1", "not header1 value"},
    {"header2", "header2 value"}
};
var newRow3Columns = new Dictionary<string, object>()
{
    {"header1", "header1 value"},
    {"header2", "header2 value"},
    {"header3", "header3 value"}
};
easyCsv.InsertRow(newRow)
       .AddColumn("header3", "value given to all rows in header3 column")
       .InsertRow(newRow3Columns)
       .FilterRows(row => (string)row["header1"] != "header1 value") // Would remove newRow2Columns (Which would have 3 columns rights here because of AddColumn)
       .CalculateFileContent();

For more methods and usage examples, please refer to the EasyCsv documentation and source code.

Contributing I gladly welcome contributions to EasyCsv! If you find a bug or have a feature request, please open an issue on the project's GitHub repository. If you would like to contribute code, please submit a pull request.

License EasyCsv is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on EasyCsv.Files:

Package Downloads
EasyCsv

A tool that will make working with CSVs feel like a breeze. Built on top of CSVHelper

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.23 354 8/10/2023
1.0.22 133 8/7/2023
1.0.21 179 4/26/2023
1.0.16 165 4/26/2023
1.0.15 163 4/26/2023
1.0.14 228 4/7/2023
1.0.13 198 4/7/2023
1.0.12 189 4/7/2023
1.0.11 231 3/31/2023
1.0.10 224 3/31/2023
1.0.9 218 3/31/2023
1.0.8 179 3/30/2023
1.0.7 175 3/29/2023
1.0.6 179 3/29/2023
1.0.5 195 3/29/2023
1.0.4 193 3/29/2023
1.0.3 190 3/29/2023
1.0.2 211 3/27/2023
1.0.1 198 3/27/2023
1.0.0 270 3/27/2023