Showing results for November 2017 - Page 2 of 2 - Developer Support

Nov 2, 2017
0
0

Choosing the right tooling for Azure and side by side Azure CLI and PowerShell commands

Pam Lahoud
Pam Lahoud

This article on the various tools available to perform tasks in Azure comes to us from Premier Developer consultant Crystal Tenn.There are a lot of tools out there for managing your Azure subscriptions! We have the Portal web page, Visual Studio integration (with the Azure SDK), PowerShell commands, and the Azure CLI. Sometimes it’s hard to know wh...

AzurePowerShellCrystal Tenn
Nov 1, 2017
0
0

[Service Fabric] Full/Incremental backup and restore sample

Pam Lahoud
Pam Lahoud

Premier Developer consultant Larry Wall created this sample application to demonstrate how to do full and incremental backups of your Service Fabric services to Azure blob storage. I recently worked with a client who said that they had had trouble implementing incremental backup and restore for their stateful services, so I was set to the ta...

AzureService FabricLarry Wall
Nov 1, 2017
0
0

Dissecting the tuples in C# 7

Sergey Tepliakov
Sergey Tepliakov

types were introduced in .NET 4.0 with two significant drawbacks: (1) tuple types are classes and (2) there was no language support for constructing/deconstructing them. To solve these issues, C# 7 introduces new language feature as well as a new family of types (*). Today, if you need to glue together two values to return them from a function ...

seteplia