DbEntityEntry.Equals, méthode (DbEntityEntry)
[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.]
Détermine si le DbEntityEntry spécifié est égal à cette instance. Deux instances DbEntityEntry sont considérées comme égales s'il s'agit de deux entrées de la même entité sur le même DbContext.
Espace de noms : System.Data.Entity.Infrastructure
Assembly : EntityFramework (dans EntityFramework.dll)
Syntaxe
'Déclaration
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Function Equals ( _
other As DbEntityEntry _
) As Boolean
'Utilisation
Dim instance As DbEntityEntry
Dim other As DbEntityEntry
Dim returnValue As Boolean
returnValue = instance.Equals(other)
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public bool Equals(
DbEntityEntry other
)
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
bool Equals(
DbEntityEntry^ other
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
member Equals :
other:DbEntityEntry -> bool
public function Equals(
other : DbEntityEntry
) : boolean
Paramètres
- other
Type : System.Data.Entity.Infrastructure.DbEntityEntry
DbEntityEntry à comparer à cette instance.
Valeur de retour
Type : System.Boolean
true si l'DbEntityEntry spécifié est égal à cette instance ; sinon, false.