クエリへの入力として日付を送信するため、手動でデータセットに値を入力して rdlc レポートを生成したいと考えています。私はそれを行うために次のコードを使用します
//my list get populated with the relevant records according to its date and I'm using the tableadapter of my dataset to do that
List<DailySalesEntity> list = DailySalesHandler.GetSalesByDate(dateTimePicker1.Value);
reportViewer1.LocalReport.DataSources.Clear();
Microsoft.Reporting.WinForms.ReportDataSource report = new Microsoft.Reporting.WinForms.ReportDataSource("DataSet_Dailysales", list);
reportViewer1.LocalReport.DataSources.Add(report);
reportViewer1.LocalReport.Refresh();
. データセットを使用してデータを表示するために Tablix を使用しています。レポート ビューアーに正しいレポートを設定しました。例外はありません。しかし、レポートは読み込み続け、レポートは表示されません。私は間違っているのは何ですか。
パラメーターをクエリに渡してデータセットを設定し、結果のデータセットをレポートで使用するにはどうすればよいですか?