Tag Archives: C#
Migrating Data from Azure Files Share to Azure Blob Storage Using C#
For growing businesses, efficient data management is as critical as streamlined processes and actionable reporting. As organizations scale, the volume and complexity of data stored in systems like Azure Files Share increase, necessitating robust, scalable storage solutions like Azure Blob Storage. Are you struggling to manage your file storage efficiently? If you’re looking to automate … Continue reading Migrating Data from Azure Files Share to Azure Blob Storage Using C#
Automating File Transfers from Azure File Share to Blob Storage with a Function App
Efficient file management is essential for businesses leveraging Azure cloud storage. Automating file transfers between Azure File Share and Azure Blob Storage enhances scalability, reduces manual intervention, and ensures data availability. This blog provides a step-by-step guide to setting up an Azure Timer Trigger Function App to automate the transfer process. Why Automate File Transfers? … Continue reading Automating File Transfers from Azure File Share to Blob Storage with a Function App
Inheritance in C#
In C#, inheritance is a way to create a new class that is a modified version of an existing class. The new class is called the derived class, and the existing class is the base class. The derived class inherits the base class members, which means it has access to all of the base class’s … Continue reading Inheritance in C#
Use of Environment Variable inside Azure Function in C#
In this blog, we will learn how to configure and use Environment Variable in Azure Function. Concept of using Environment variable during your development which needs to deploy on multiple servers and connect to multiple systems. Whenever you use Environment variables to store the global constant or system credentials it reduces the time which was … Continue reading Use of Environment Variable inside Azure Function in C#
Serializing and Deserializing Json objects with key value pairs in C#
If we have a json data whose objects have one or more key value pairs also known as properties and we need to separate them into individual objects then Serializing and Deserializing method can be used in C#. Sample Json data : { “FirstName”:”Aditya”, “MiddleName”:”Ashok”, “LastName”:”Somwanshi”, “Phone”:[“9004802526″,”34304235”], “Address”:{“Primary”:”Panvel”, “Secondary”:”Cloudfronts”} … Continue reading Serializing and Deserializing Json objects with key value pairs in C#