Get Value From JSON File stored in Azure Storage Using C#

I have JSON file in Azure Storage which I am reading using C#. In that JSON file there is anode called SQLViewDifinition and that node I have SQL which I need to fetch. I have read the file into a string and converted that string in JObject. I have the JSON now but is finding… Read More Get Value From JSON File stored in Azure Storage Using C#

How to upload append blob to azure without getting size limit exception?

public async Task<string> UploadDataAsync<T>(CloudBlobContainer container, string relativeUrl, List<T> reportData, string mimeType, string data, ILogger log) { string absoluteUri = string.Empty; byte[] bytes = Encoding.ASCII.GetBytes(data); using (var ms = new MemoryStream()) { using (StreamWriter sw = new StreamWriter(ms)) { sw.Write(data); sw.Flush(); ms.Position = 0; CloudAppendBlob blob; blob = container.GetAppendBlobReference(relativeUrl); if (await blob.ExistsAsync()) { await blob.AppendBlockAsync(ms); absoluteUri… Read More How to upload append blob to azure without getting size limit exception?