RDLC レポートの作成中にエラーが発生しました。エラーはそれです
"レポートの処理中にエラーが発生しました。データ ソース 'ds_SalesQuotation' への接続を作成できません。データ リーダーが閉じているときに 'Read' を呼び出すことは有効な操作ではありません。リーダーが閉じているときに Read を呼び出す試みは無効です。"
ds_SalesQuotation.xsd ファイルを作成します。rdlc レポートで、データセット名を 'dsSalesQuotation' として指定し、datasourse を 'ds_SalesQuotation' として設定します。
私のコードは reportviewr(.aspx) にあります
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
using (BillingAppEntities context = new BillingAppEntities())
{
var val = context.Sp_SalesQuotation(id);
ReportDataSource rd = new ReportDataSource("dsSalesQuotation", val);
ReportViewer1.LocalReport.DataSources.Add(rd);
ReportViewer1.LocalReport.Refresh();
}
}
}
私のコードに間違いはありますか.誰でもチェックしてください..