Used to decorate a property that is the inverse of another property

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

Syntax

C#
public InversePropertyAttribute(
	string inversePropertyName
)
Visual Basic
Public Sub New ( 
	inversePropertyName As String
)
Visual C++
public:
InversePropertyAttribute(
	String^ inversePropertyName
)
F#
new : 
        inversePropertyName : string -> InversePropertyAttribute

Parameters

inversePropertyName
Type: System..::..String
The name of the property that this property is the inverse of

Remarks

The property named by inversePropertyName must be the name of a property on the type returned by the decorated property (or on the type of the items in the returned collection if the decorated property type is a collection type)

See Also