You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One quick question. I'm using this one on a shared CosmosDB with partition key 'pk', when I query my db with the following code I get an error:
"System.Private.CoreLib: Exception while executing function: Horizontal. Microsoft.Azure.DocumentDB.Core: PartitionKey value must be supplied for this operation."
Any idea how I can fix this?
string cubeConfigString = @"{
cubeConfig: {
groupBy: 'startDateTime',
field: 'timeserie',
f: 'sum'
},
filterQuery: 'SELECT * FROM c'
}";
Object cubeConfig = JsonConvert.DeserializeObject<Object>(cubeConfigString);
var result = await client.ExecuteStoredProcedureAsync<dynamic>(uri + "/sprocs/cube", cubeConfig);
The text was updated successfully, but these errors were encountered:
Hi, thanks for the nice store procedure!
One quick question. I'm using this one on a shared CosmosDB with partition key 'pk', when I query my db with the following code I get an error:
"System.Private.CoreLib: Exception while executing function: Horizontal. Microsoft.Azure.DocumentDB.Core: PartitionKey value must be supplied for this operation."
Any idea how I can fix this?
The text was updated successfully, but these errors were encountered: