ItemgetRelationships Method (String, String, String) |
Note: This API is now obsolete.
Returns an item that is a collection of relationship item with specified type; each relationship item has
only properties specified in the select list.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 14.0.9.36244
Syntax[ObsoleteAttribute("Obsolete since 8 SP2. The method will be removed from future releases of IOM. Please use fetchRelationship(...) methods instead.",
false)]
public Item getRelationships(
string itemTypeName,
string selectAttr,
string orderByAttr
)
<ObsoleteAttribute("Obsolete since 8 SP2. The method will be removed from future releases of IOM. Please use fetchRelationship(...) methods instead.",
false)>
Public Function getRelationships (
itemTypeName As String,
selectAttr As String,
orderByAttr As String
) As Item
/** @attribute ObsoleteAttribute("Obsolete since 8 SP2. The method will be removed from future releases of IOM. Please use fetchRelationship(...) methods instead.",
false) */
public Item getRelationships(
String itemTypeName,
String selectAttr,
String orderByAttr
)
public function getRelationships(
itemTypeName : String,
selectAttr : String,
orderByAttr : String
) : Item
Parameters
- itemTypeName
- Type: SystemString
Type of relationship. - selectAttr
- Type: SystemString
Select list for relations items. - orderByAttr
- Type: SystemString
Comma delimited list of property names used to set the SQL "ORDER BY" clause.
Return Value
Type:
Item
Item that is a collection of relationship items with specified name. If
this doesn't
have any relationship of this type, the returned item
nodeList will be empty.
ExceptionsException | Condition |
---|
Exception | The instance doesn't represent a single item. |
See Also