...
To be completed (add example).
Searched the specified model for the instance id of the instance where the specified attribute has exact the specified value. If the attribute type is of string type use the attrStringValue to specify the attribute value. If the attribute type is of integer type, use the attrIntegerValue to specify the attribute value. This function returns only one insance id which implies that you only should use this function if the attribute value is defined to be unique. If the attribute value may occur in more than one instance, use edmiGetHashedAttrInstances.
If no attribute hash table is defined for the specified attribute, no sequential search is performed and the function returns an error code.
Related functions: edmiGetHashedAttrInstanceBN, edmiGetHashedAttrInstances, edmiGetHashedAttrInstancesBN, edmiHashModelInstances
Header:
#include "sdai.h"
Prototype:
EdmiError edmiGetHashedAttrInstance(SdaiModel modelId, SdaiAttr attrId, SdaiString attrStringValue
SdaiAttr attrId,
SdaiString attrStringValue, SdaiInteger attrIntegerValue, SdaiInstance *instance);
Arguments:
modelId | A numeric modelID that uniquely identifies the model of interest in the EDMdatabase. |
attrId | A numeric attributeID that uniquely identifies an attribute definition instance in the EDMdatabase. |
attrStringValue | is used to specify the hash table key for hash tables of sdaiSTRING SdaiString data type. |
attrIntegerValue | is used to specify the hash table key for hash tables of SdaiString, of SdaiInstance, and EdmPackedDate data types. |
*instance | Address of the variable where to reurn the instance id of the found instance. |
...