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"
})
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.