Table of Contents

TLinqDataTableState<T>.GetFilterAction Method

This method returns a function that can be used to filter the data. This implementation calls SqlFilter when rowFilter starts with "@", or calls [SimpleFilter](SimpleFilter.md) when rowFilter doesn't start with "@". You might want to replace this method by a different one that filters in a different way.

Syntax

Namespace: FlexCel.Report

public virtual Func<IQueryable, IQueryable> GetFilterAction(String rowFilter)

Parameters

<-> Parameter Type Description
rowFilter String String with the filter as the user wrote it in the report.

See also