CsvReaderAdvanced 1.0.5

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

// Install CsvReaderAdvanced as a Cake Tool
#tool nuget:?package=CsvReaderAdvanced&version=1.0.5

CsvReaderAdvanced

The faster and most modern CSV reader adapted to DI principles.

How to use

First add the service to the ServiceCollection.

 builder.ConfigureServices((context, services) =>
        {
            services.AddCsvReader(context.Configuration);
        ...

To understand exactly what the method does, it assumes that the current configuration file contains a csvSchemas section, typically in the appsettings.json file:

public static IServiceCollection AddCsvReader(this IServiceCollection services, IConfiguration configuration)
{
    services.AddSingleton<ICsvReader,CsvReader>();
    services.AddTransient<ICsvFile,CsvFile>();

    //Microsoft.Extensions.Hosting must be referenced
    services.Configure<CsvSchemaOptions>(configuration.GetSection(CsvSchemaOptions.CsvSchemasSection));
    return services;
}

The schema in the appsettings.json file typically contains a property named csvSchemas:

"csvSchemas": {
    "schemas": [
      {
        "name": "products",
        "fields": [
          {
            "name": "ProductID",
            "alternatives": [ "Product ID" ],
            "required": true
          },
          {
            "name": "Weight",
            "unit": "t",
            "alternativeFields": [ "Volume", "TEU" ],
            "required": true
          },
          {
            "name": "Volume",
            "unit": "m^3",
            "alternativeUnits": [ "m3", "m^3" ]
...

We assume that we get the options via DI like the following example:

public Importer(
    IUnitOfWork context,
    IMapper mapper,
    IServiceProvider provider,
    ILogger logger,
    IOptions<CsvSchemaOptions> options)
{
    _context = context;
    _mapper = mapper;
    _provider = provider;
    _logger = logger;
    _options = options.Value;
}

protected readonly IUnitOfWork _context;
protected readonly IMapper _mapper;
protected readonly IServiceProvider _provider;
protected readonly ILogger _logger;
protected readonly CsvSchemaOptions _options;

public CsvSchema? GetSchema(string name) =>
    _options?.Schemas?.FirstOrDefault(s => s.Name == name);

public ValidationResult CheckForSchema(string name)
{
    if (_options?.Schemas is null || !_options.Schemas.Any())
    {
        _logger.LogError("Could not retrieve csv schemas from settings");
        return new ValidationResult(
            new ValidationFailure[] { new ValidationFailure("CsvSchemas", "Cannot retrieve csv schemas from settings") });
    }

    var schema = GetSchema(name);

    if (schema is null)
    {
        _logger.LogError("Could not retrieve '{schemaName}' schema from settings",name);
        return new ValidationResult(
            new ValidationFailure[] { new ValidationFailure("clientSites", $"Cannot retrieve '{name}' schema from settings") });
    }
    return new ValidationResult();

}
Product Compatible and additional computed target framework versions.
.NET 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 CsvReaderAdvanced:

Package Downloads
EndpointProviders

A modern way to add Dependency Injection used for Minimal API apps. See README.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.3.1 125 3/1/2024
2.3.0 198 12/13/2023
2.2.1 131 11/28/2023
2.2.0 155 10/17/2023
2.1.1 119 10/15/2023
2.1.0 106 10/15/2023
1.3.3 102 10/14/2023
1.3.2 93 10/14/2023
1.3.0 113 10/13/2023
1.2.6 121 9/29/2023
1.2.5 170 7/18/2023
1.2.4 164 7/16/2023
1.2.2 138 7/16/2023
1.2.1 149 7/14/2023
1.2.0 137 7/14/2023
1.1.15 145 7/14/2023
1.1.14 151 7/14/2023
1.1.13 160 7/7/2023
1.1.12 223 7/6/2023
1.1.11 138 7/5/2023
1.1.10 151 7/5/2023
1.1.9 140 6/27/2023
1.1.8 123 6/26/2023
1.1.7 127 6/24/2023
1.1.6 124 6/24/2023
1.1.5 125 6/23/2023
1.1.2 125 6/23/2023
1.0.28 144 6/23/2023
1.0.27 136 6/23/2023
1.0.26 113 6/19/2023
1.0.25 143 6/18/2023
1.0.24 127 6/18/2023
1.0.23 139 6/18/2023
1.0.22 125 6/18/2023
1.0.21 126 6/17/2023
1.0.20 129 6/17/2023
1.0.19 127 6/17/2023
1.0.18 131 6/17/2023
1.0.17 137 6/17/2023
1.0.16 125 6/17/2023
1.0.15 124 6/17/2023
1.0.12 125 6/17/2023
1.0.11 130 6/17/2023
1.0.10 118 6/17/2023
1.0.9 127 6/17/2023
1.0.8 131 6/17/2023
1.0.7 118 6/17/2023
1.0.6 131 6/16/2023
1.0.5 138 6/16/2023
1.0.4 125 6/16/2023
1.0.2 116 6/16/2023