Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Connect with .net core to SSAS

I'm trying to connect Microsoft SQL Server Analysis server ( SSAS ) from .net core. At first I tried using Microsoft.AnalysisServices.AdomdClient, but it's not compatible with .net core.

Is there a way to reach SSAS and fetch some data in any other way using .net core?

like image 669
John Smith Avatar asked Dec 05 '16 07:12

John Smith


1 Answers

After a while, we couldn't do it with .net core. So, I've created a proxy with .net 4.6, which is reachable for main project as REST WS. This proxy uses Microsoft.AnalysisServices.AdomdClient just fine.

like image 157
John Smith Avatar answered Nov 09 '22 18:11

John Smith