How to connect with Azure storage table using c# and get data from azure storage table?

Dhruvtara Kumar 1 Reputation point
2021-09-14T06:23:54.637+00:00

We have written and test code with SQL table connection and fetching data from sql table, that fecthed data will saved on Azure analysis server, below is the peace of code in place of sql table i want to use azure table.
Can some one guide me on this or any peace of code please share. Thanks in advance.

dbWithTable.Model.DataSources.Add(new ProviderDataSource()
{
Name = dataSourceName,
Description = "A data source definition that uses explicit Windows credentials for authentication against SQL Server.",
ConnectionString = ConfigurationManager.ConnectionStrings["AzureTableConnection"].ConnectionString,
ImpersonationMode = Microsoft.AnalysisServices.Tabular.ImpersonationMode.ImpersonateAccount,
Account = ConfigurationManager.AppSettings["AzureTableAccount"].ToString(),
Password = ConfigurationManager.AppSettings["AzureTablePassword"].ToString(),
});

Azure Table Storage
Azure Table Storage
An Azure service that stores structured NoSQL data in the cloud.
156 questions
Azure Analysis Services
Azure Analysis Services
An Azure service that provides an enterprise-grade analytics engine.
437 questions
{count} votes