Tag - NuGet

Integrating Azure Blob Storage with ABP.IO Framework

Integrating Azure Blob Storage with ABP.IO Framework

A highly scalable cloud storage option for storing substantial volumes of unstructured data is Azure Blob Storage. When paired with the ABP.IO Framework, it provides a reliable and effective way to handle files in your online apps. We'll walk you through the process of connecting Azure Blob Storage with an...

Using EPPlus library to manage excel spreadsheets in .NET

EPPlus is a library to manage excel spreadsheets, using OOXML. To install EPPlus, you can search for EPPlus in "NuGet Package Manager" or simply run the following command in the "Package Manager Console":PM> Install-Package EPPlusAfter installing we are going to need to use this namespace:using OfficeOpenXml;I got an exception while...