Connect to .net kernel to SSAS

I am trying to connect a Microsoft SQL Server Analysis Server (SSAS) from a .net kernel. At first I tried to use Microsoft.AnalysisServices.AdomdClient , but it is not compatible with the .net core.

Is there a way to get to SSAS and get some data in any other way using the .net kernel?

+5
source share
1 answer

After some time, we could not do this with the .net core. So, I created a proxy with .net 4.6, which is available for the main project as REST WS. This proxy uses Microsoft.AnalysisServices.AdomdClient just fine.

+1
source

Source: https://habr.com/ru/post/1260802/


All Articles