EdmElementComparer.IsEquivalentTo Método (IEdmTypeReference, IEdmTypeReference)
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 IEdmTypeReference, _
otherType As IEdmTypeReference _
) As Boolean
'Uso
Dim thisType As IEdmTypeReference
Dim otherType As IEdmTypeReference
Dim returnValue As Boolean
returnValue = thisType.IsEquivalentTo(otherType)
public static bool IsEquivalentTo(
this IEdmTypeReference thisType,
IEdmTypeReference otherType
)
[ExtensionAttribute]
public:
static bool IsEquivalentTo(
IEdmTypeReference^ thisType,
IEdmTypeReference^ otherType
)
static member IsEquivalentTo :
thisType:IEdmTypeReference *
otherType:IEdmTypeReference -> bool
public static function IsEquivalentTo(
thisType : IEdmTypeReference,
otherType : IEdmTypeReference
) : boolean
Parámetros
- thisType
Tipo: Microsoft.Data.Edm.IEdmTypeReference
Referencia al objeto que realiza la llamada.
- otherType
Tipo: Microsoft.Data.Edm.IEdmTypeReference
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 IEdmTypeReference. 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).