EasyCsv.Core 1.0.29

dotnet add package EasyCsv.Core --version 1.0.29
NuGet\Install-Package EasyCsv.Core -Version 1.0.29
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.Core" Version="1.0.29" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyCsv.Core --version 1.0.29
#r "nuget: EasyCsv.Core, 1.0.29"
#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.Core as a Cake Addin
#addin nuget:?package=EasyCsv.Core&version=1.0.29

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

NuGet

EasyCsv

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
  • Support for larger number of types: byte[], string, Stream, TextReader, Objects<T>, IBrowserFile, IFormFile
  • Fluent API for method chaining
  • Mutations context to limit error proneability
  • 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

Blazor Components

Documentation

Examples Website

Installation

Install the EasyCsv package via NuGet:

NuGet\Install-Package EasyCsv

Usage

Creating an IEasyCsv and reading a CSV file

The reading of the csv is automatically done when you use the EasyCsvFactory or EasyCsvFileFactory to create your IEasyCsv. It is also automatically done when you call easyCsv.Mutate() or easyCsv.MutateAsync() unless you set the saveChanges flag to false. WARNING. All From(Type) methods will return null if something goes wrong or the csv contains 0 rows.

IBrowserFile file = files[0];
var strCsv = "header1,header2\nheader1value,header2value";
var easyCsv = await EasyCsvFileFactory.FromIBrowserFileAsync(file);
var easyCsv2 = await EasyCsvFactory.FromStringAsync();
// You can access the ContentStr, ContentBytes, and create C# Objects using GetRecords<T> at this point

Manipulate CSV data

EasyCsv provides an assortment of methods for manipulating CSV data. All calls that manipulate the CSV are done through easyCsv.Manipulate(Action<CSVMuationScope> scope) or easyCsv.ManipulateAsync(Action<CSVMuationScope> scope). The scope will ensure that the ContentStr and ContentBytes are up to date after you do manipulations.

Add column with default value

easyCsv.Mutate(mutation => mutation.AddColumn("column name", "value given to all rows in column/header field", upsert: true));

Remove a column:

var easyCsv = await EasyCsvFactory.FromStreamAsync(fileStream);
easyCsv.Mutate(mutation => mutation.RemoveColumn("header2"));

Replace Columns

Removes the column of the old header field and upserts all it's values to all the rows of the new header field. CSV

easyCsv.Mutate(mutation => mutation.ReplaceColumn(string oldHeaderField, string newHeaderField));

Replace header row

You can replace all the headers in the header row of this CSV. The number of headers in the new row must match the number of headers current CsvContent or no operation will be performed

List<string> newHeaderRow = new () { "newHeader1", "newHeader2", "newHeader3" }
easyCsv.Mutate(mutation => mutation.ReplaceHeaderRow(newHeaderRow));

Remove unused data

Removes any header that does match a public property on the type param T.

// Removes all fields that don't match public property on Person
await easyCsv.MutateAsync(mutation => await mutation.RemoveUnusedHeadersAsync<Person>(caseInsensitive:true));

Filter rows:

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

easyCsv.Mutate(mutation => mutation.FilterRows(row => (int)row["header1"] > 10));

Map values in a column:

// before "header1,header2\nOldValue,OldValue";
var valueMapping = new Dictionary<object, object>
{
    { "OldValue", "NewValue" }
};
easyCsv.Mutate(mutation => mutation.MapValuesInColumn("header1", valueMapping));
// after "header1,header2\nNewValue,OldValue";

Sort data by column:

You can provide a Func<IDictionary<string, object>, TKey>. to sort like this easyCsv.SortCsv(row => row["FieldName"].ToString().Length, ascending: false);. This would sort rows by the lengths of fields in column "header1"

easyCsv.Mutate(mutation => mutation.SortCsv("header1", ascending: true));

Combine CSVs

Some care will need to be taken with this since the headers must match exactly, however it is perfect to use when you know you have two csvs that were read an object of type T.

var easyCsv1 = EasyCsvFactory.FromObjects<Person>(people1);
var easyCsv2 = EasyCsvFactory.FromObjects<Person>(people2);
var combinedCsv = easyCsv1.Combine(easyCsv2); 
// The configurations from easyCsv1 will used in the combinedCsv
// This can also be done in the mutation context

Read directly to objects

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

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

Crud Operations

I also have some CRUD operations for directly working with rows. UpdateRow, UpsertRow, DeleteRow, AddRow, etc

Convenience methods

I include plenty of convenience methods on EasyCsv such as Clone(), GetHeaders(), GetRowCount(), ContainsHeader(), Clear()

Chain Method Calls Fluently

// before  header1,header2, header3
//          value1,value2, value3
//          value1,value2, value3
easyCsv.Mutate(mutations => mutations.RemoveColumn("header2")
                                     .AddColumn("header4", "value4")
                                     .ReplaceColumn("header1", "newHeader1"));
       
// after  newHeader1, header3, header4
//          value1, value3, value4
//          value1, value3, value4

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.

Acknowledgements

This library makes use of the following third-party dependencies:

CsvHelper

EasyCsv uses CsvHelper to read and write CSV files. CsvHelper is licensed under the Microsoft Public License (Ms-PL). We would like to thank the authors and contributors of CsvHelper for their work on this excellent library.

Known Issues and Limitations

License EasyCsv is licensed under the MIT License.

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

NuGet packages (2)

Showing the top 2 NuGet packages that depend on EasyCsv.Core:

Package Downloads
EasyCsv

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

EasyCsv.Files

Extends support for IBrowserFiles and IFormFiles

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.29 115 3/6/2024
1.0.28 128 2/1/2024
1.0.27 117 1/26/2024
1.0.26 194 12/21/2023
1.0.25 179 12/3/2023
1.0.24 107 12/3/2023
1.0.23 181 8/10/2023
1.0.22 159 8/7/2023
1.0.21 240 4/26/2023
1.0.16 219 4/26/2023
1.0.15 213 4/26/2023
1.0.14 275 4/7/2023
1.0.13 263 4/7/2023
1.0.12 255 4/7/2023
1.0.11 278 3/31/2023
1.0.10 289 3/31/2023
1.0.9 293 3/31/2023
1.0.8 222 3/30/2023
1.0.7 213 3/29/2023
1.0.6 223 3/29/2023
1.0.5 230 3/29/2023
1.0.4 233 3/29/2023
1.0.3 240 3/29/2023
1.0.2 249 3/27/2023
1.0.1 227 3/27/2023
1.0.0 328 3/27/2023