November 2018
Intermediate to advanced
424 pages
10h 55m
English
Perform the following steps:
[FunctionName("ReadExcel_AT")] public static async Task<List<Employee>> ReadExcel_AT( [ActivityTrigger] string name, ILogger log) { log.LogInformation("Orchestration started");StorageManager storageManager = new StorageManager(); Stream stream = null; ; log.LogInformation("Reading the Blob Started"); stream = await storageManager.ReadBlob(name); log.LogInformation("Reading the Blob has Completed"); EPPLusExcelManager ...