Table of Contents

Filter option

Overview

The Filter option is applied to the underlying entity view of the DataSource.

This filter is applied before the data is provided to the report.

How to use?

var filter = new Filter();

var options = new ExecuteReportOptions("MyReport")
    .WithFilter(filter);

await this.ExecuteReportWithOptionsAsync(options);

To configure the same concept from the Neos Studio report designer for preview and export scenarios, see Configure preview and export in the report designer.