Skip to content

CasperWSchmidt/UcommerceCsvImporter

Repository files navigation

This project is a flexible implementation of the Ucommerce Data Importer for CSV files. To get started, all you need to do is add your configuration to appsettings.json as shown in The test project appsettings.json and remember to add the CSV importer to your service collection like below:

services.AddUcommerceCsvImporter(configuration);

Optionally you can add your DataImporterSettings (see the Ucommerce documentation) to the call:

services.AddUcommerceCsvImporter(configuration, settings);

You can now get an instance of DataImporter from Ucommerce.DataImport.Core like below and use it to import your CSV data!

var dataImporter = _serviceProvider.GetRequiredService<DataImporter>();
await dataImporter.Run();

About

A flexible CSV importer for Ucommerce

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published