Click or drag to resize

DataObjectLoadOptionsBaseSqlFilters Property

SqlFilters can be used to apply custom sql filtering to the data object query. Each filter is added like this: "[where|and] ([filter])". Using the SqlFilters requires knowledge of the construction of the data object query! SqlFilters should ONLY be used if none of the other available filters can be applied! Examples: - "do.number > 100" - "not exists (select 1 from sometable as st where st.doid = do.id)"

Namespace:  Omada.OE.Model
Assembly:  Omada.OE.Model (in Omada.OE.Model.dll) Version: 15.0.0.0
Syntax
C#
public StringList SqlFilters { get; }

Property Value

Type: StringList
See Also