Question

When I try to add DataSets to any RDLC report within asp.net Project, Visual Studio takes some time (in wich it usually reads all compiled assemblies), and then suddenly crashes. It happens either in VS 2012 and VS 2013.

In some other machines, it does not crash. But does show any elegible class/method to be used as a DataSet source.

Was it helpful?

Solution

Please navigate to C:\Windows\Assembly and locate Microsoft.AnalysisServices.AdomdClient.dll to check the version number. For 2008 R2, it is 10.0.0.0 required. If no 10.0.0.0, install it by download Microsoft® SQL Server® 2008 R2 ADOMD.NET and running Adomd.NET from:

go.microsoft.com/fwlink/?LinkID=188441&clcid=0x409 (X86 Package)

OR

go.microsoft.com/fwlink/?LinkID=188442&clcid=0x409 (X64 Package)

OTHER TIPS

I had the same problem and I found the solution myself. First add the dataset to project from "add new item" wizard and then try to set rdlc dataset.

I had the same problem in ASP.NET MVC project but in my case was from one Nuget package reference.

I found some useful information here.

In my case reference that caused the problem was Microsoft.AspNet.SignalR.Core version="2.0.2"

After I update this Nuget package to version="2.2.1" solve my problem.

I don't what it did on the backend of visual studio but when I created a dataset it magically fix the issue on my report wizard and dataset creation in the rdlc.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top