DataServiceProviderMethods.Compare Method (Nullable<Guid>, Nullable<Guid>)
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Returns comparison information for nullable GUID parameters in an operation expression.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Shared Function Compare ( _
left As Nullable(Of Guid), _
right As Nullable(Of Guid) _
) As Integer
'Usage
Dim left As Nullable(Of Guid)
Dim right As Nullable(Of Guid)
Dim returnValue As Integer
returnValue = DataServiceProviderMethods.Compare(left, _
right)
public static int Compare(
Nullable<Guid> left,
Nullable<Guid> right
)
public:
static int Compare(
Nullable<Guid> left,
Nullable<Guid> right
)
static member Compare :
left:Nullable<Guid> *
right:Nullable<Guid> -> int
public static function Compare(
left : Nullable<Guid>,
right : Nullable<Guid>
) : int
Parameters
- left
Type: System.Nullable<Guid>
The first parameter value.
- right
Type: System.Nullable<Guid>
The second parameter value.
Return Value
Type: System.Int32
Value |
Condition |
---|---|
-1 |
left is less than right. |
0 |
x equals y. |
1 |
left is greater than right. |
Remarks
The comparison is performed by byte order.