EdmPropertyValueBinding Constructor
Initializes a new instance of the EdmPropertyValueBinding class.
Namespace: Microsoft.Data.Edm.Library.Annotations
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
Public Sub New ( _
boundProperty As IEdmProperty, _
value As IEdmExpression _
)
'Usage
Dim boundProperty As IEdmProperty
Dim value As IEdmExpression
Dim instance As New EdmPropertyValueBinding(boundProperty, _
value)
public EdmPropertyValueBinding(
IEdmProperty boundProperty,
IEdmExpression value
)
public:
EdmPropertyValueBinding(
IEdmProperty^ boundProperty,
IEdmExpression^ value
)
new :
boundProperty:IEdmProperty *
value:IEdmExpression -> EdmPropertyValueBinding
public function EdmPropertyValueBinding(
boundProperty : IEdmProperty,
value : IEdmExpression
)
Parameters
- boundProperty
Type: Microsoft.Data.Edm.IEdmProperty
Property that is given a value by the annotation.
- value
Type: Microsoft.Data.Edm.Expressions.IEdmExpression
Expression producing the value of the annotation.