Hi,
Is it possible to bind a ReportFilter.In operator's datasource to an Enum? e.g.
parameter.AvailableValues.DataSource = Enum.GetNames(typeof(CompletionStatus));
I am binding to an ICollection of DTO's hence the field value will be an enum.
I get the following error:
The expression contains object 'CompletionStatus' that is not defined in the current context.
Many thanks