Reputation: 467
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?
Upvotes: 16
Views: 2221
Reputation: 467
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.
Upvotes: 3