public virtual ActionResult GetReportSnapshot()
{
var data = (ComparativeBalanceReportDS) TempData["ComparativeSession"];
StiReport report = new StiReport();
report.Load(Server.MapPath("~/Content/StimulReports/SampleReport.mrt"));
report.Compile();
report["fromDocumentNumber"] = "1";
report["toDocumentNumber"] = "85";
return StiMvcViewer.GetReportSnapshotResult(HttpContext, report);
}
我有存储过程并在设计器中执行,但我没有向它发送参数,并且在运行 App 时,我收到以下错误:
错误:SqlCommand.Prepare 方法要求所有可变长度参数具有显式设置的非零大小。
我该怎么办?