Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ADOMD nuget package for asp.net core

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 ?

like image 647
OpenStack Avatar asked Dec 21 '18 03:12

OpenStack


1 Answers

There are no official .NET Core-compatible ADOMD.NET yet:

  • https://github.com/dotnet/corefx/issues/20809
  • https://feedback.azure.com/forums/908035-sql-server/suggestions/35508349-adomd-core

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

like image 54
Vitaliy Fedorchenko Avatar answered Sep 25 '22 15:09

Vitaliy Fedorchenko