| QueryParameterHelperParameterType Enumeration |
Enum for the supported parameter types
Namespace:
Omada.OE.AppLogic.Helpers
Assembly:
Omada.OE.AppLogic (in Omada.OE.AppLogic.dll) Version: 15.0.0.0
Syntaxpublic enum ParameterType
Members
| Member name | Value | Description |
---|
| Int | 0 |
Use if value is an integer
|
| String | 1 |
Use if value is a string
|
| DateTime | 2 |
Use if value is a date time
|
| Boolean | 3 |
Use if value is a boolean value (true/false/0/1)
|
| Guid | 4 |
Use if value is a valid guid value
|
| IntList | 5 |
Use if value is a list of integers. Values must be seperated with comma e.g. 1,2,3,4
|
| GuidList | 6 |
Use if value is a list of guids. Values must be seperated with comma
|
| StringList | 7 |
Use if value is a list of string. Values must be seperated with comma
|
See Also