DataTableExtensions.ImportJson Method
.NET Standard 2.x
Import data from a JSON string into the DataTable.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Overloads
Method | Description |
---|---|
ImportJson(this DataTable dataTable, string json) | Imports data from a JSON string into the DataTable. |
ImportJson(this DataTable dataTable, string json, int startRow) | Imports 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) | Imports 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) | Imports 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) | Imports data from a JSON string into the DataTable, and specifies the start and end positions of the rows and properties. |