DataExport 1.0.0
dotnet add package DataExport --version 1.0.0
NuGet\Install-Package DataExport -Version 1.0.0
<PackageReference Include="DataExport" Version="1.0.0" />
paket add DataExport --version 1.0.0
#r "nuget: DataExport, 1.0.0"
// 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:
Create an instance of the
DataExporter
class by providing a list of dictionaries containing the data you want to export.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 | Versions 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net8.0
- ClosedXML (>= 0.102.2)
- Newtonsoft.Json (>= 13.0.3)
- Xceed.Words.NET (>= 3.0.23523.1209)
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 | 331 | 2/26/2024 |