DataExport 1.0.0

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

// Install DataExport as a Cake Tool
#tool nuget:?package=DataExport&version=1.0.0

DataExportPackage

DataExportPackage is a .NET library that facilitates exporting data to various file formats such as JSON, Word, XML, Excel, CSV, and PDF.

Installation

You can install DataExportPackage via NuGet Package Manager:

Install-Package DataExportPackage

Usage

To use DataExportPackage, follow these steps:

  1. Create an instance of the DataExporter class by providing a list of dictionaries containing the data you want to export.

  2. Call the appropriate method on the DataExporter object to export the data to the desired file format.

Example

using System;
using System.Collections.Generic;
using System.IO;
using DataExportPackage;

class Program
{
    static void Main(string[] args)
    {
        // Sample data
        var data = new List<Dictionary<string, object>>()
        {
            new Dictionary<string, object> { {"name", "John"}, {"age", 30}, {"city", "New York"} },
            new Dictionary<string, object> { {"name", "Alice"}, {"age", 25}, {"city", "Los Angeles"} },
            new Dictionary<string, object> { {"name", "Bob"}, {"age", 35}, {"city", "Chicago"} }
        };

        // Specify the export directory
        string exportDirectory = @"C:\Users\YourUsername\Documents\Export";

        // Create the export directory if it does not exist
        Directory.CreateDirectory(exportDirectory);

        // Create a DataExporter instance
        var exporter = new DataExporter(data);

        // Export data to JSON
        exporter.ToJson(Path.Combine(exportDirectory, "data.json"));

        // Export data to Word
        exporter.ToWord(Path.Combine(exportDirectory, "data.docx"));

        // Export data to XML
        exporter.ToXml(Path.Combine(exportDirectory, "data.xml"));

        // Export data to Excel
        exporter.ToExcel(Path.Combine(exportDirectory, "data.xlsx"));
    }
}

Addressing File Paths

When specifying the file path for export, make sure to provide the full path to the desired location on your file system. In the example above, replace "C:\Users\YourUsername\Documents\Export" with the desired path where you want the exported files to be saved.

Contributing

Contributions to DataExportPackage are welcome! If you find any bugs, have feature requests, or want to contribute code, please open an issue or submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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

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
1.0.0 274 2/26/2024