The Bold Reports data extensions by Syncfusion is a server-side helper package to connect with Csv data sources. This helper package supports to connect these data sources in Report Designer and Report Viewer controls with ASP.NET Core, ASP.NET, ASP.NET MVC, Angular, and JavaScript platforms. Learn more: https://www.boldreports.com?utm_source=nuget&utm_medium=listing Documentation: https://help.boldreports.com/embedded-reporting?utm_source=nuget&utm_medium=listing Support Questions: mailto:support@boldreports.com?utm_source=nuget&utm_medium=listing This is a commercial product and requires a paid subscription license for possession or use. Syncfusion’s Bold Reports services, including this component, is subject to the terms and conditions of Syncfusion's Bold Reports Software License Agreement and Terms of Service (https://www.boldreports.com/terms-of-use/?utm_source=nuget&utm_medium=listing). To acquire a license, you can start a subscription or start a free 15-day trial here (https://www.boldreports.com/pricing/?utm_source=nuget&utm_medium=listing). © Copyright 2025 Syncfusion, Inc. All Rights Reserved. The Syncfusion Bold Reports license and copyright applies to this distribution.
The Cuemon.Data namespace contains types that provide ways to connect, build and manipulate different data sources. The namespace is an addition to the System.Data namespace.
Very simple and Easy to use, convert Datatables to CSV or CSV to DataTables, Excel to CSV, Read CSV raw string, CSV file, Modification, Set Read Till Criterias, Build CSV Author: Samer Shahbaz Create Date: 15/11/2023 Description: The CsvBuilder utility, developed by Samer Shahbaz, is a powerful tool designed to simplify the process of creating CSV (Comma-Separated Values) files using .NET DataTables or Customely. This utility provides a convenient and efficient way to generate/read CSV data. Key Features: Simplicity: Designed for ease of use, providing a straightforward and user-friendly experience. Customizable Options: Offers flexibility with customizable processing options for CSV data. Excel Conversion: Seamlessly converts Excel files to CSV, enhancing data interoperability. Versatile Construction: Datasets methods and GetValue function accommodate diverse data structures for CSV construction. Usage Examples: Constructor: Static Method for Creating CsvBuilder with Multiple DataTables: CsvBuilder csvBuilder = CsvBuilder.Datasets(dataTable1, dataTable2, ...); Building CSV: csvBuilder.Build(tableIndex1, tableIndex2, ...) Customizing Value Rendering: Subscribe to the ValueRenderEvent to define custom parsing logic for column and row values. Output Handling: Obtain the CSV content as a Stream: Stream csvStream = csvBuilder.GetStream(); Save the CSV content to a file: csvBuilder.SaveAsFile("filePath.csv"); Example #1: // Create CsvBuilder with a DataSet ICsvBuilder csvBuilder = CsvBuilder.Datasets(dataSet); // Build CSV with selected columns from specific DataTables ICsvExtractor csvExtractor = csvBuilder.Build(); // Obtain CSV content as a Stream MemoryStream csvStream = csvExtractor.GetStream(); // Save CSV content to a file csvExtractor.SaveAsFile("output.csv"); //dispose if necessary csvBuilder.Dispose(); This utility simplifies the process of CSV generation, providing users with a flexible and efficient solution for working with tabular data in the .NET environment. For More Information See https://goworkpro.github.io/CSV-Builder-Utility/
This is a pakage accepting list of data and returning a csv file . This also has method to convert List of data to DataTable or String Builder.
Very simple and Easy to use, convert datatables to CSV Author: Samer Shahbaz Create Date: 15/11/2023 Description: The CsvBuilder utility, developed by Samer Shahbaz, is a powerful tool designed to simplify the process of creating CSV (Comma-Separated Values) files using .NET DataTables. This utility provides a convenient and efficient way to generate CSV data from one or more DataTables within a DataSet. Key Features: DataSet Integration: Accepts a DataSet as input, allowing the user to aggregate multiple DataTables for CSV creation. Flexible Value Rendering: Supports a customizable event, ValueRenderEvent, which allows users to define a custom parser for values based on their data type (column or row). Multiple DataTable Support: Enables the user to selectively include columns from different DataTables by specifying the table index. Stream Handling: The utility efficiently manages memory streams to optimize CSV generation. Dispose Method: Implements the IDisposable interface for proper resource management. Usage: Constructor: Static Method for Creating CsvBuilder with Multiple DataTables: CsvBuilder csvBuilder = CsvBuilder.Datasets(dataTable1, dataTable2, ...); Building CSV: csvBuilder.Build(tableIndex1, tableIndex2, ...) Customizing Value Rendering: Subscribe to the ValueRenderEvent to define custom parsing logic for column and row values. Output Handling: Obtain the CSV content as a Stream: Stream csvStream = csvBuilder.GetStream(); Save the CSV content to a file: csvBuilder.SaveAsFile("filePath.csv"); Example #1: // Create CsvBuilder with a DataSet ICsvBuilder csvBuilder = CsvBuilder.Datasets(dataSet); // Build CSV with selected columns from specific DataTables ICsvExtractor csvExtractor = csvBuilder.Build(); // Obtain CSV content as a Stream MemoryStream csvStream = csvExtractor.GetStream(); // Save CSV content to a file csvExtractor.SaveAsFile("output.csv"); //dispose if necessary csvExtractor.Dispose(); This utility simplifies the process of CSV generation, providing users with a flexible and efficient solution for working with tabular data in the .NET environment.