Chris Williams
Chris Williams
When you query against [Azure Cosmos db](https://docs.microsoft.com/en-us/azure/cosmos-db/introduction) you get a List in return, and the dynamic objects are actually [Newtonsoft.Json.Linq.JObject](https://www.newtonsoft.com/json/help/html/t_newtonsoft_json_linq_jobject.htm) that you get by deserializing the returned json using the...
The TypeConverterCache mentioned in #1064 does not seem to be available in the instance of CsvConfiguration now and the example in #1838 requires a pre-defined class.
Just to help anyone who visits this post in the future, an example of the failing code is: ``` var records = new List(); JObject record = JObject.Parse("{\"department\":\"Engineering\",\"itemCount\":1}"); records.Add(record); using...
I will merge and release these PRs this weekend
Are you running your function in isolated mode? If not, then your function may not have support for these dlls. Sent from my iPhone On Oct 7, 2022, at 2:52...
>>So the only option to use your sink is to switch to isolated mode? I'm not sure. However before isolated mode existed, I ran into all sorts of problems trying...
I can't foresee a time when I'd have the availability to debug into what's happening with Blazor applications. I'm sorry it's not working for you, but given that there is...
Unfortunately I've never heard of any feedback, one way or the other, from Blazor developers.
@Anu666 This is the implementation in my controller: ``` using (MemoryStream stream = new MemoryStream()) { using (StreamWriter writer = new StreamWriter(stream)) { using (var csv = new CsvWriter(writer, cultureInfo))...
@imeya my knowledge of Azure Functions is fairly limited, but I believe that appsettings.json is just for local development, and once you publish your function you will have to store...