EdmIntegerConstant Constructor (IEdmPrimitiveTypeReference, Int64)
Initializes a new instance of the EdmIntegerConstant class.
Namespace: Microsoft.Data.Edm.Library.Values
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
Public Sub New ( _
type As IEdmPrimitiveTypeReference, _
value As Long _
)
'Usage
Dim type As IEdmPrimitiveTypeReference
Dim value As Long
Dim instance As New EdmIntegerConstant(type, value)
public EdmIntegerConstant(
IEdmPrimitiveTypeReference type,
long value
)
public:
EdmIntegerConstant(
IEdmPrimitiveTypeReference^ type,
long long value
)
new :
type:IEdmPrimitiveTypeReference *
value:int64 -> EdmIntegerConstant
public function EdmIntegerConstant(
type : IEdmPrimitiveTypeReference,
value : long
)
Parameters
- type
Type: Microsoft.Data.Edm.IEdmPrimitiveTypeReference
Type of the integer.
- value
Type: System.Int64
The Integer value represented by this value.