Reputation: 1
How can I create a parameterized RDLC report with reportviewer control used? and how to do it with entity DataSource?
I need to display the report through ReportViewer control in my MVC3 application.
Upvotes: 0
Views: 715
Reputation: 1120
You will need to use a WebForms page instead of an MVC view if you are using the Report Viewer Control, you can create a web forms page in an MVC application just fine.
Once you have the WebForms page you can use entity data sources as well in the RDLC editor (but not before the web forms page is created). In fact, I have a .aspx page in one of my applications just because the RDLC designer requires it for me to see the entity options.
Upvotes: 1