How to connect with Azure storage table using c# and get data from azure storage table?
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(),
});