Returns all data objects that have a property of the specified type where the property value is this data object

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
IEnumerable<IDataObject> GetInverseOf(
	string type
)
Visual Basic
Function GetInverseOf ( 
	type As String
) As IEnumerable(Of IDataObject)
Visual C++
IEnumerable<IDataObject^>^ GetInverseOf(
	String^ type
)
F#
abstract GetInverseOf : 
        type : string -> IEnumerable<IDataObject> 

Parameters

type
Type: System..::..String
The property type as a CURIE or URI

Return Value

Type: IEnumerable<(Of <(<'IDataObject>)>)>
An enumeration of data object values

See Also