| DataObjectControllerGetDataObjectUIdsByIntegerPropertyValues Method |
Find data objects that has (one of a set of) specified values in a specified integer property.
Namespace:
Omada.OE.AppLogic
Assembly:
Omada.OE.AppLogic (in Omada.OE.AppLogic.dll) Version: 15.0.0.0
Syntaxpublic Dictionary<int, Guid> GetDataObjectUIdsByIntegerPropertyValues(
int propertyId,
IEnumerable<int> propertyValues,
IEnumerable<int> dataObjectTypeIds = null
)
Parameters
- propertyId
- Type: SystemInt32
We'll look for data objects that has (one of a set of) specified values in this (integer) property.
- propertyValues
- Type: System.Collections.GenericIEnumerableInt32
We'll look for data objects that has one of these values in the specified (integer) property.
Must contain at least one value.
- dataObjectTypeIds (Optional)
- Type: System.Collections.GenericIEnumerableInt32
If specified we'll only look for data objects of the specified types.
Can be null.
Return Value
Type:
DictionaryInt32,
Guid
Keys are integer property values.
Values are the uids of the resolved data objects.
See Also