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(
	IDataObject type
)
Visual Basic
Function GetInverseOf ( 
	type As IDataObject
) As IEnumerable(Of IDataObject)
Visual C++
IEnumerable<IDataObject^>^ GetInverseOf(
	IDataObject^ type
)
F#
abstract GetInverseOf : 
        type : IDataObject -> IEnumerable<IDataObject> 

Parameters

type
Type: BrightstarDB.Client..::..IDataObject
The property type

Return Value

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

See Also