QueryTerm
How the filter should be applied to the query
Assembly: ServiceStack.Interfaces.dll
View Source
Declaration
public enum QueryTerm
Fields
Default
Defaults to 'And'
View Source
Declaration
Default = 0
And
Apply filter to query using 'AND' to further filter resultset
View Source
Declaration
And = 1
Or
Apply inclusive filter to query using 'OR' to further expand resultset
View Source
Declaration
Or = 2
Ensure
Ensure filter is always applied even if other 'OR' filters are included (uses OrmLite's Ensure API)
View Source
Declaration
Ensure = 3