DataStoreDataExtensions.ImportJson Method
.NET Standard 2.x
Inserts data from a JSON string into the DataStore.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Overloads
Method | Description |
---|---|
ImportJson(this IDataStoreBase dataStore, string text) | Inserts data from a JSON string into the DataStore. |
ImportJson(this IDataStoreBase dataStore, string text, DwBuffer dwbuffer) | Inserts data from a JSON string into the specified buffer of DataStore. |
ImportJson(this IDataStoreBase dataStore, string text, DwBuffer dwbuffer, int startRow) | Inserts data from a JSON string into the specified buffer of DataStore. You can specify the starting position in the JSON array. Data before the starting position will not be imported into the DataStore. |
ImportJson(this IDataStoreBase dataStore, string text, DwBuffer dwbuffer, int startRow, int endRow) | Inserts data from a JSON string into the specified buffer of DataStore. You can specify the starting and ending position in the JSON array. Data that are out of this range will not be imported into the DataStore. |
ImportJson(this IDataStoreBase dataStore, string text, DwBuffer dwbuffer, int startRow, int endRow, int startColumn) | Inserts data from a JSON string into the specified buffer of DataStore. You can specify the starting and ending positions in the JSON array, and you can specify the number of the first key value in the JSON object to be imported. Data that are out of this range will not be imported into the DataStore. |
ImportJson(this IDataStoreBase dataStore, string text, DwBuffer dwbuffer, int startRow, int endRow, int startColumn, int endColumn) | Inserts data from a JSON string into the specified buffer of DataStore. You can specify the starting and ending positions in the JSON array, and you can specify the number of the first key value and the number of the last key value in the JSON object to be imported. Data that are out of this range will not be imported into the DataStore. |
ImportJson(this IDataStoreBase dataStore, string text, DwBuffer dwbuffer, int startRow, int endRow,int startColumn, int endColumn, int dwStartColumn) | Inserts data from a JSON string into the specified buffer of DataStore. You can specify the starting and ending positions in the JSON array, and specify the number of the first key value and the number of the last key value in the JSON object to be imported. You can also specify the number of the first column in the DataStore that should receive data. |