Show / Hide Table of Contents

    DataTableExtensions.ExportJson Method

    .NET Standard 2.x

    Exports data from the DataTable to a Plain JSON string.

    Namespace: DWNet.Data

    Assembly: DWNet.Data.dll

    Overloads

    Method Description
    ExportJson(this DataTable dataTable) Exports data from the DataTable to a Plain JSON string.
    ExportJson(this DataTable dataTable, bool changedOnly) Exports all rows or only the changed rows from the DataTable to a Plain JSON string.
    ExportJson(this DataTable dataTable, int startRow) Exports data from the DataTable to a Plain JSON string, and specifies the starting position of the rows.
    ExportJson(this DataTable dataTable, int startRow, int endRow) Exports data from the DataTable to a Plain JSON string, and specifies the start and end positions of the rows.
    ExportJson(this DataTable dataTable, int startRow, int endRow, short startColumn) Exports data from the DataTable to a Plain JSON string, and specifies the start and end positions of the rows and starting position of the column.
    ExportJson(this DataTable dataTable, int startRow, int endRow, short startColumn, short endColumn) Exports data from the DataTable to a Plain JSON string, and specifies the start and end positions of the rows and columns.
    Back to top Generated by Appeon