DbEntityEntry<TEntity>.Equals, méthode (DbEntityEntry<TEntity>)
[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<TEntity> spécifié est égal à cette instance. Deux instances DbEntityEntry<TEntity> 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(Of TEntity) _
) As Boolean
'Utilisation
Dim instance As DbEntityEntry
Dim other As DbEntityEntry(Of TEntity)
Dim returnValue As Boolean
returnValue = instance.Equals(other)
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public bool Equals(
DbEntityEntry<TEntity> other
)
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
bool Equals(
DbEntityEntry<TEntity>^ other
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
member Equals :
other:DbEntityEntry<'TEntity> -> bool
public function Equals(
other : DbEntityEntry<TEntity>
) : boolean
Paramètres
- other
Type : System.Data.Entity.Infrastructure.DbEntityEntry<TEntity>
DbEntityEntry<TEntity> à comparer à cette instance.
Valeur de retour
Type : System.Boolean
true si l'DbEntityEntry<TEntity> spécifié est égal à cette instance ; sinon, false.