IsEquivalentTo Method (IEdmFunctionParameter, IEdmFunctionParameter)
Returns true if the compared function parameter is semantically equivalent to this function parameter.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function IsEquivalentTo ( _
thisParameter As IEdmFunctionParameter, _
otherParameter As IEdmFunctionParameter _
) As Boolean
'Usage
Dim thisParameter As IEdmFunctionParameter
Dim otherParameter As IEdmFunctionParameter
Dim returnValue As Boolean
returnValue = thisParameter.IsEquivalentTo(otherParameter)
public static bool IsEquivalentTo(
this IEdmFunctionParameter thisParameter,
IEdmFunctionParameter otherParameter
)
[ExtensionAttribute]
public:
static bool IsEquivalentTo(
IEdmFunctionParameter^ thisParameter,
IEdmFunctionParameter^ otherParameter
)
static member IsEquivalentTo :
thisParameter:IEdmFunctionParameter *
otherParameter:IEdmFunctionParameter -> bool
public static function IsEquivalentTo(
thisParameter : IEdmFunctionParameter,
otherParameter : IEdmFunctionParameter
) : boolean
Parameters
- thisParameter
Type: Microsoft.Data.Edm..::..IEdmFunctionParameter
Reference to the calling object.
- otherParameter
Type: Microsoft.Data.Edm..::..IEdmFunctionParameter
Function parameter being compared to.
Return Value
Type: System..::..Boolean
Equivalence of the two function parameters.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmFunctionParameter. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).