Reputation: 1015
I am using the unofficial ADOMD client
https://www.nuget.org/packages/Unofficial.Microsoft.AnalysisServices.AdomdClientNetCore/
It looks fine in my project that target dotnet core 3.1. However, it keeps on returning error when I use it on project that is targeting dotnet core 2.2.
The error received is "The operation was canceled."
Is it unsupported for dotnet core 2.2? Ia there anyway to make it works on dotnet core 2.2?
Upvotes: 1
Views: 319
Reputation: 11625
Since your question was posted, an officially maintained ADOMD.NET (Microsoft.AnalysisServices.AdomdClient) for .NET Core is available in preview on nuget. You can consider using this library instead of the unofficial library.
Upvotes: 2