Hi,
We are developing WebApi to support online Excel editing.
(quite similar to https://github.com/aspose-cells/Aspose.Cells-for-.NET).
I’m currently working on the “Download” API.
When trying to test my API with test data taken from your example
Using this code:
var gridJsWorkbook = new GridJsWorkbook();
GridJsWorkbook.CacheImp = Storage as Cache;
gridJsWorkbook.MergeExcelFileFromJson(uid, data.ToString());
With this JSON input data (in the “uid” parameter):BasicTestToSaveData.zip (1.1 KB)
I’m getting the exception below:
’Unable to cast object of type ‘Newtonsoft.Json.Linq.JObject’ to type 'Newtonsoft.Json.Linq.JArray’
Any ideas?
Thank in advance,
Ori K.