PivotDataSourceFilterStringDescriptorBuilder

Methods

StartsWith(System.String)

Includes only values which are starting with the given string.

Parameters

value - System.String

The string with which the result should start

Example

Razor
 
            .Filter(f => f.Add("[Geography].[City]").StartsWith(" Foo"))
             

EndsWith(System.String)

Includes only values which end with the given string.

Parameters

value - System.String

The string with which the result should end

Example

Razor
 
            .Filter(f => f.Add("[Geography].[City]").EndsWith(" Foo"))
             

Contains(System.String)

Includes only values which contain the given string.

Parameters

value - System.String

The string which the result should contain

Example

Razor
 
            .Filter(f => f.Add("[Geography].[City]").Contains(" Foo"))
             

DoesNotContain(System.String)

Includes only values which does not contain the given string.

Parameters

value - System.String

The string which the result should not contain

Example

Razor
 
            .Filter(f => f.Add("[Geography].[City]").DoesNotContain("Foo"))
             

IsEqualTo(System.String)

Includes only values which are equal to the given string.

Parameters

value - System.String

The string which the result should not contain

Example

Razor
 
             .Filter(f => f.Add("[Geography].[City]").IsEqualTo("Foo"))
             

IsNotEqualTo(System.String)

Includes only values which are notequal to the given string.

Parameters

value - System.String

The string which the result should not contain

Example

Razor
 
             .Filter(f => f.Add("[Geography].[City]").IsNotEqualTo("Foo"))
             

In(System.String)

Parameters

value - System.String