We are using "Microsoft.AnalysisServices.AdomdClient.retail.amd64" Nuget package for connecting SSAS OLAP in .NET CORE
var environmentConnectionString = @"Provider=MSOLAP;Data Source=ABCD-SQL-XYZ;Initial Catalog=ABCDSALES_OLAP;User ID=xxxx;Password=zzzzz;Persist Security Info=True;Update Isolation Level=2;Impersonation Level=Impersonate";
using (var conn = new AdomdConnection(environmentConnectionString))
{
conn.Open();
try
{
string output = "";
But, we are getting "A connection cannot be made. Ensure that the server is running." while running "conn.Open()" command.
Thanks in advance for your support