DevToys.PocoCsv.Core
1.5.1
See the version list below for details.
dotnet add package DevToys.PocoCsv.Core --version 1.5.1
NuGet\Install-Package DevToys.PocoCsv.Core -Version 1.5.1
<PackageReference Include="DevToys.PocoCsv.Core" Version="1.5.1" />
paket add DevToys.PocoCsv.Core --version 1.5.1
#r "nuget: DevToys.PocoCsv.Core, 1.5.1"
// Install DevToys.PocoCsv.Core as a Cake Addin #addin nuget:?package=DevToys.PocoCsv.Core&version=1.5.1 // Install DevToys.PocoCsv.Core as a Cake Tool #tool nuget:?package=DevToys.PocoCsv.Core&version=1.5.1
DevToys.PocoCsv.Core
One of the fastest of not the fastest csv reader deserialzer available.
DevToys.PocoCsv.Core is a class library to read and write to Csv. It contains CsvStreamReader, CsvStreamWriter and Serialization classes CsvReader<T> and CsvWriter<T>.
- Read/write serialize/deserialize data to and from Csv.
- Use Linq to query large CSV files with CsvReader<T>.ReadAsEnumerable().
- Use CsvWriter<T>.Write() to write large data tables to Csv.
- Retrieve schema for a csv file with CsvUtils.GetCsvSchema() which can be used to create a poco object.
CsvStreamReader
string file = "C:\Temp\data.csv";
using (CsvStreamReader _reader = new CsvStreamReader(file))
{
_reader.Separator = ',';
while (!_reader.EndOfCsvStream)
{
List<string> _values = _reader.ReadCsvLine().ToList();
}
}
CsvStreamWriter
string file = @"D:\Temp\test.csv";
using (CsvStreamWriter _writer = new CsvStreamWriter(file))
{
var _line = new string[] { "Row 1", "Row A,A", "Row 3", "Row B" };
_writer.WriteCsvLine(_line);
}
CsvReader<T>
public class Data
{
[Column(Index = 0)]
public string Column1 { get; set; }
[Column(Index = 1)]
public string Column2 { get; set; }
[Column(Index = 2)]
public string Column3 { get; set; }
[Column(Index = 5)]
public string Column5 { get; set; }
}
string file = @"D:\Temp\data.csv");
using (CsvReader<Data> _reader = new(file))
{
_reader.Open();
_reader.Separator = ','; // or use _reader.DetectSeparator();
var _data = Reader.ReadAsEnumerable().Where(p => p.Column1.Contains("16"));
var _materialized = _data.ToList();
}
- Open()
Opens the Reader. - Separator
Set the separator to use (default ','); - ReadAsEnumerable()
Reads and deserializes each csv file line per iteration in the collection, this allows for querying mega sized files. - DetectSeparator()
To auto set the separator (looks for commonly used separators in first 10 lines). - Skip()
Skip and advances the reader to the next row without interpret it. - Read()
Reads current row into T and advances the reader to the next row. - MoveToStart()
Moves the reader to the start position, Skip() and Take() alter the start positions use MoveToStart() to reset the position.
CsvWriter<T>
private IEnumerable<CsvSimple> LargeData()
{
for (int ii = 0; ii < 10000000; ii++)
{
CsvSimple _line = new()
{
AfBij = "bij",
Bedrag = "100",
Code = "test",
Datum = "20200203",
Mededelingen = $"test {ii}",
Rekening = "3434",
Tegenrekening = "3423424"
};
yield return _line;
}
}
string file = @"D:\largedata.csv";
using (CsvWriter<CsvSimple> _writer = new(file) { Separator = ',', Append = true })
{
_writer.Open();
_writer.Write(LargeData());
}
- Open()
Opens the Writer. - Separator
Set the separator to use (default ','); - WriteHeader()
Write header with property names of T. - Write(IEnumerable<T> rows)
Writes data to Csv while consuming rows.
ColumnAttribute
The column attribute defines the properties to be serialized or deserialized.
- Index
Defines the index position within the CSV document. Numbers can be skipped for the reader to ignore certain columns, for the writer numbers can also be skipped which leads to empty columns. - Header
Defines the header text, this property only applies to the CsvWriter, if not specified, the property name is used. - OutputFormat
Apply a string format, depending on the Property type. This property is for CsvWriter only. - OutputNullValue
Defines the value to write as a default for null, This property is for CsvWriter only.
Other Examples
public class Data
{
[Column(Index = 0)]
public string Collumn1 { get; set; }
[Column(Index = 1)]
public string Collumn2 { get; set; }
[Column(Index = 2, Header = "Test" )]
public byte[] Collumn3 { get; set; }
[Column(Index = 3)]
public DateTime TestDateTime { get; set; }
[Column(Index = 4)]
public DateTime? TestDateTimeNull { get; set; }
[Column(Index = 5)]
public Int32 TestInt { get; set; }
[Column(Index = 6, OutputNullValue = "[NULL]")]
public Int32? TestIntNull { get; set; }
}
private IEnumerable<Data> GetTestData()
{
yield return new Data
{
Collumn1 = "01",
Collumn2 = "AA",
Collumn3 = new byte[3] { 2, 4, 6 },
TestDateTime = DateTime.Now,
TestDateTimeNull = DateTime.Now,
TestInt = 100,
TestIntNull = 200
};
yield return new Data
{
Collumn1 = "01",
Collumn2 = "AA",
Collumn3 = new byte[3] { 2, 4, 6 },
TestDateTime = DateTime.Now,
TestDateTimeNull = DateTime.Now,
TestInt = 100,
TestIntNull = 200
};
yield return new Data
{
Collumn1 = "04",
Collumn2 = "BB",
Collumn3 = new byte[3] { 8, 9, 10 },
TestDateTime = DateTime.Now,
TestDateTimeNull = null,
TestInt = 300,
TestIntNull = null
};
}
public static string StreamToString(Stream stream)
{
using (StreamReader reader = new StreamReader(stream, Encoding.UTF8))
{
stream.Position = 0;
return reader.ReadToEnd();
}
}
List<Data> _result = new List<Data>();
using (MemoryStream _stream = new MemoryStream())
{
using (CsvWriter<Data> _csvWriter = new CsvWriter<Data>(_stream))
using (CsvReader<Data> _csvReader = new CsvReader<Data>(_stream))
{
_csvWriter.Separator = ';';
_csvWriter.Open();
_csvWriter.WriteHeader();
_csvWriter.Write(GetTestData());
_csvReader.Open();
_csvReader.DetectSeparator(); // Auto detect separator.
_csvReader.Skip(); // Skip header.
_result = _csvReader.ReadAsEnumerable().Where(p => p.Collumn2 == "AA").ToList();
}
}
string _result;
using (MemoryStream _stream = new MemoryStream())
{
using (CsvWriter<Data> _csvWriter = new CsvWriter<Data>(_stream))
{
_csvWriter.Separator = ',';
_csvWriter.Open();
_csvWriter.WriteHeader();
_csvWriter.Write(GetTestData());
_result = StreamToString(_stream);
}
}
Sampling only a few rows without reading entire csv.
List<CsvSimple> _result1;
List<CsvSimple> _result2;
string file = @"D:\largedata.csv";
_w.Start();
using (CsvReader<CsvSimple> _reader = new CsvReader<CsvSimple>(file))
{
_reader.Open();
_reader.Skip(); // skip header.
_result1 = _reader.ReadAsEnumerable().Take(10).ToList(); // Only Read 10 sample rows.
_result2 = _reader.ReadAsEnumerable().Take(10).ToList(); // Read the next 10 sample rows.
}
Mind you on the fact that Skip and Take andvances the reader to the next position.
executing another _reader.ReadAsEnumerable().Where(p ⇒ p...).ToList() will Query from position 21.
Use MoveToStart() to move the reader to the starting position.
Product | Versions 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 was computed. 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. |
-
net6.0
- No dependencies.
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 |
---|---|---|
4.2.2 | 159 | 2/28/2024 |
4.2.1 | 115 | 2/24/2024 |
4.2.0 | 128 | 2/23/2024 |
4.1.2 | 103 | 2/22/2024 |
4.1.1 | 131 | 2/21/2024 |
4.1.0 | 126 | 2/21/2024 |
4.0.1 | 138 | 2/12/2024 |
4.0.0 | 127 | 2/12/2024 |
3.1.13 | 102 | 2/8/2024 |
3.1.12 | 149 | 2/7/2024 |
3.1.11 | 104 | 1/31/2024 |
3.1.10 | 113 | 1/19/2024 |
3.1.9 | 120 | 1/13/2024 |
3.1.8 | 119 | 1/12/2024 |
3.1.7 | 107 | 1/11/2024 |
3.1.5 | 133 | 1/8/2024 |
3.1.3 | 174 | 12/1/2023 |
3.1.2 | 134 | 12/1/2023 |
3.1.0 | 119 | 11/28/2023 |
3.0.7 | 208 | 8/27/2023 |
3.0.6 | 147 | 8/23/2023 |
3.0.5 | 158 | 8/23/2023 |
3.0.4 | 159 | 8/17/2023 |
3.0.3 | 173 | 8/15/2023 |
3.0.2 | 175 | 8/11/2023 |
3.0.1 | 194 | 8/11/2023 |
3.0.0 | 170 | 8/11/2023 |
2.0.7 | 219 | 8/9/2023 |
2.0.5 | 179 | 8/4/2023 |
2.0.4 | 177 | 8/3/2023 |
2.0.3 | 146 | 7/31/2023 |
2.0.2 | 173 | 7/28/2023 |
2.0.0 | 177 | 7/19/2023 |
1.7.53 | 215 | 4/14/2023 |
1.7.52 | 214 | 4/12/2023 |
1.7.51 | 201 | 4/7/2023 |
1.7.43 | 230 | 4/3/2023 |
1.7.42 | 213 | 4/3/2023 |
1.7.41 | 197 | 4/3/2023 |
1.7.5 | 202 | 4/7/2023 |
1.7.3 | 242 | 4/3/2023 |
1.7.2 | 230 | 4/3/2023 |
1.7.1 | 217 | 4/3/2023 |
1.7.0 | 226 | 4/1/2023 |
1.6.3 | 225 | 3/31/2023 |
1.6.2 | 227 | 3/29/2023 |
1.6.1 | 220 | 3/29/2023 |
1.6.0 | 214 | 3/27/2023 |
1.5.8 | 239 | 3/24/2023 |
1.5.7 | 210 | 3/22/2023 |
1.5.6 | 226 | 3/22/2023 |
1.5.5 | 234 | 3/21/2023 |
1.5.4 | 243 | 3/21/2023 |
1.5.1 | 233 | 3/20/2023 |
1.5.0 | 238 | 3/19/2023 |
1.4.5 | 233 | 3/18/2023 |
1.4.4 | 273 | 3/18/2023 |
1.4.3 | 226 | 3/18/2023 |
1.4.2 | 242 | 3/18/2023 |
1.4.1 | 210 | 3/18/2023 |
1.4.0 | 229 | 3/18/2023 |
1.3.92 | 239 | 3/18/2023 |
1.3.91 | 245 | 3/17/2023 |
1.3.9 | 232 | 3/17/2023 |
1.3.8 | 208 | 3/17/2023 |
1.3.7 | 238 | 3/17/2023 |
1.3.6 | 204 | 3/17/2023 |
1.3.5 | 220 | 3/17/2023 |
1.3.4 | 242 | 3/17/2023 |
1.3.3 | 232 | 3/16/2023 |
1.3.2 | 211 | 3/16/2023 |
1.3.1 | 240 | 3/16/2023 |
1.3.0 | 195 | 3/16/2023 |
1.2.0 | 234 | 3/14/2023 |
1.1.6 | 274 | 2/24/2023 |
1.1.5 | 319 | 2/16/2023 |
1.1.4 | 478 | 5/18/2022 |
1.1.3 | 715 | 1/27/2022 |
1.1.2 | 644 | 1/27/2022 |
1.1.1 | 695 | 1/14/2022 |
1.1.0 | 5,842 | 11/23/2021 |
1.0.5 | 393 | 5/11/2021 |
1.0.4 | 337 | 4/14/2021 |
1.0.3 | 377 | 4/12/2021 |
1.0.2 | 335 | 4/12/2021 |
1.0.1 | 316 | 4/7/2021 |
1.0.0 | 388 | 4/7/2021 |