Show / Hide Table of Contents

    DataTableExtensions.ImportJson Method

    .NET Standard 2.x

    Import data from a JSON string into the DataTable.

    Namespace: DWNet.Data

    Assembly: DWNet.Data.dll

    Overloads

    Method Description
    ImportJson(this DataTable dataTable, string json) Import data from a JSON string into the DataTable.
    ImportJson(this DataTable dataTable, string json, int startRow) Import data from a JSON string into the DataTable, and specifies the starting position of the rows.
    ImportJson(this DataTable dataTable, string json, int startRow, int endRow) Import data from a JSON string into the DataTable, and specifies the start and end positions of the rows.
    ImportJson(this DataTable dataTable, string json, int startRow, int endRow, short startProperty) Import data from a JSON string into the DataTable, and specifies the start and end positions of the rows and starting position of the property.
    ImportJson(this DataTable dataTable, string json, int startRow, int endRow, short startProperty, short endProperty) Import data from a JSON string into the DataTable, and specifies the start and end positions of the rows and properties.
    Back to top Generated by Appeon