EntityKey.Equality, opérateur
[Cette page concerne Entity Framework version 6. La dernière version est disponible sous le nom de package 'Entity Framework' NuGet. Pour plus d'informations sur Entity Framework, consultez msdn.com/data/ef.]
Indique une valeur si les deux clés sont égales.
Espace de noms : System.Data.Entity.Core
Assembly : EntityFramework (dans EntityFramework.dll)
Syntaxe
'Déclaration
Public Shared Operator = ( _
key1 As EntityKey, _
key2 As EntityKey _
) As Boolean
'Utilisation
Dim key1 As EntityKey
Dim key2 As EntityKey
Dim returnValue As Boolean
returnValue = (key1 = key2)
public static bool operator ==(
EntityKey key1,
EntityKey key2
)
public:
static bool operator ==(
EntityKey^ key1,
EntityKey^ key2
)
static let inline(=)
key1:EntityKey *
key2:EntityKey : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Paramètres
- key1
Type : System.Data.Entity.Core.EntityKey
Une clé à comparer.
- key2
Type : System.Data.Entity.Core.EntityKey
Une clé à comparer.
Valeur de retour
Type : System.Boolean
true si les deux clés sont égales ; sinon, false.