I am looking at ADOMD nuget package. It seems it does not support ASP.NET Core framework. How can I Get this nuget package for ASP.NET core. If not this package, do we have any other alternative to connect to cube ?
I am looking at ADOMD nuget package. It seems it does not support ASP.NET Core framework. How can I Get this nuget package for ASP.NET core. If not this package, do we have any other alternative to connect to cube ?
There are no official .NET Core-compatible ADOMD.NET yet:
You can try this unofficial port of "Microsoft.AnalysisServices.AdomdClient".
If your hosting environment is windows, you can create simple .NET Framework-based microservice that handles requests to SSAS from your main ASP.NET Core app.
--- update ---
One more alternative: XMLA client that is compatible with .NET Core 2
ADOMD.NET (Microsoft.AnalysisServices.AdomdClient) for .NET Core is available in preview on nuget now. This is an official Microsoft maintained library.
Edit: Apparently it now also works for on-prem Analysis Services in addition to Azure Analysis Services and Power BI Premium.