Ambiguous between the following methods or properties in Stimulsoft

941 Views Asked by At

I use Stimulsoft and when I want to generate report,I see this error:

 CS0121: The call is ambiguous between the following methods or properties: 'Stimulsoft.Report.Mvc.StiMvcBaseHelper.Stimulsoft(System.Web.Mvc.HtmlHelper)' and 'Stimulsoft.Report.Mvc.StiMvcBaseHelper.Stimulsoft(System.Web.Mvc.HtmlHelper)'

and my .cshtml file:

@using Stimulsoft.Report.Mvc

@{
  ViewBag.Title = "GetCardReportS";
}
<head>
   @Html.Stimulsoft().RenderMvcViewerScripts();
</head>

@Html.Stimulsoft().StiMvcViewer(new StiMvcViewerOptions() {
    ActionGetReportSnapshot = "GetReportSnapshot",
    ActionViewerEvent = "ViewerEvent",
    ActionPrintReport = "PrintReport",
    ActionExportReport = "ExportReport",
    ActionInteraction = "Interaction"
})
2

There are 2 best solutions below

5
On

You should explicitly specify the fully-qualified name of the Property which you would like to use.

There are probably more than one Property with same name within your references - Do you reference to two different versions of the same Library (Stimulsoft)?

UPDATE:

It's most likely that you are using two different versions of the Stimulsoft library. Using the Modules window, you'll be able to investigate it properly:

At run-time\debugging mode: Debug-> Windows -> Modules.

2
On

Those two types seem to be the same, so they must be loaded from different assemblies. Make sure that you only load one version of the Stimulsoft assembly or assemblies. The "modules" window of Visual Studio displays the list of assemblies. It is possible that you have multiple references in the web.config for example.