EdmElementComparer.IsEquivalentTo Método (IEdmType, IEdmType)
Devuelve true si el tipo comparado es semánticamente equivalente a este tipo.
Espacio de nombres: Microsoft.Data.Edm
Ensamblado: Microsoft.Data.Edm (en Microsoft.Data.Edm.dll)
Sintaxis
'Declaración
<ExtensionAttribute> _
Public Shared Function IsEquivalentTo ( _
thisType As IEdmType, _
otherType As IEdmType _
) As Boolean
'Uso
Dim thisType As IEdmType
Dim otherType As IEdmType
Dim returnValue As Boolean
returnValue = thisType.IsEquivalentTo(otherType)
public static bool IsEquivalentTo(
this IEdmType thisType,
IEdmType otherType
)
[ExtensionAttribute]
public:
static bool IsEquivalentTo(
IEdmType^ thisType,
IEdmType^ otherType
)
static member IsEquivalentTo :
thisType:IEdmType *
otherType:IEdmType -> bool
public static function IsEquivalentTo(
thisType : IEdmType,
otherType : IEdmType
) : boolean
Parámetros
- thisType
Tipo: Microsoft.Data.Edm.IEdmType
Referencia al objeto que realiza la llamada.
- otherType
Tipo: Microsoft.Data.Edm.IEdmType
Tipo con el que se va a comparar.
Valor devuelto
Tipo: System.Boolean
Equivalencia de los dos tipos.
Nota de uso
En Visual Basic y C#, puede llamar a este método como un método de instancia en cualquier objeto del tipo IEdmType. Cuando utilice la sintaxis del método de instancia para llamar a este método, sáltese este parámetro primero. Para obtener más información, vea https://msdn.microsoft.com/es-es/library/bb384936(v=vs.103) o https://msdn.microsoft.com/es-es/library/bb383977(v=vs.103).