[]
Uses a custom report store provider.
public ReportDesignerConfiguration UseReportsProvider(IReportStore reportStore)
Type | Name | Description |
---|---|---|
IReportStore | reportStore | The custom report store provider. |
Type | Description |
---|---|
ReportDesignerConfiguration | The current ReportDesignerConfiguration instance. |
app.UseReportDesigner(config =>
{
// Your implementation of IReportStore.
config.UseReportsProvider(reportStore);
});