EntityCollection<TEntity>.Contains(TEntity) Método

Definición

Determina si un objeto concreto existe en la colección.

public:
 virtual bool Contains(TEntity entity);
public bool Contains (TEntity entity);
abstract member Contains : 'Entity -> bool
override this.Contains : 'Entity -> bool
Public Function Contains (entity As TEntity) As Boolean

Parámetros

entity
TEntity

Objeto que se va a buscar en EntityCollection<TEntity>.

Devoluciones

true si el objeto se encuentra en EntityCollection<TEntity>; en caso contrario, false.

Implementaciones

Ejemplos

Este ejemplo se basa en el modelo Adventure Works Sales. Para ejecutar el código de este ejemplo, debe haber agregado ya el modelo AdventureWorks Sales al proyecto y haber configurado el proyecto para que use Entity Framework. Para ello, complete los procedimientos descritos en How to: Manually Configure an Entity Framework Project (Cómo: Configurar manualmente un proyecto de Entity Framework ) y How to: Manually Define the Model and Mapping Files (Cómo: Definir manualmente los archivos de modelo y asignación).

En el ejemplo, se realizan las tareas siguientes:

  1. Se crean dos nuevas entidades SalesOrderHeader y se agregan a la entidad Contact.

  2. Se obtienen todos los extremos relacionados del RelationshipManager que está asociado a la entidad Contact.

  3. Se recorre en iteración la colección de IRelatedEnd.

  4. Se obtiene la EntityCollection<TEntity> para cada extremo relacionado.

  5. Se usa el método Remove para quitar una entidad de la colección.

  6. Se llama al método Contains para determinar si se ha quitado el objeto de la colección.

  7. Se usa el método Add para volver a agregar la entidad.

using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    Contact contact = new Contact();

    // Create a new SalesOrderHeader.
    SalesOrderHeader newSalesOrder1 = new SalesOrderHeader();
    // Add SalesOrderHeader to the Contact.
    contact.SalesOrderHeaders.Add(newSalesOrder1);

    // Create another SalesOrderHeader.
    SalesOrderHeader newSalesOrder2 = new SalesOrderHeader();
    // Add SalesOrderHeader to the Contact.
    contact.SalesOrderHeaders.Add(newSalesOrder2);

    // Get all related ends
    IEnumerable<IRelatedEnd> relEnds =
        ((IEntityWithRelationships)contact)
        .RelationshipManager.GetAllRelatedEnds();

    foreach (IRelatedEnd relEnd in relEnds)
    {
        // Get Entity Collection from related end
        EntityCollection<SalesOrderHeader> entityCollection =
            (EntityCollection<SalesOrderHeader>)relEnd;

        Console.WriteLine("EntityCollection count: {0}",
            entityCollection.Count);
        // Remove the first entity object.
        entityCollection.Remove(newSalesOrder1);

        bool contains = entityCollection.Contains(newSalesOrder1);

        // Write the number of items after one entity has been removed
        Console.WriteLine("EntityCollection count after one entity has been removed: {0}",
            entityCollection.Count);

        if (contains == false)
            Console.WriteLine("The removed entity is not in in the collection any more.");

        //Use IRelatedEnd to add the entity back.
        relEnd.Add(newSalesOrder1);
        Console.WriteLine("EntityCollection count after an entity has been added again: {0}",
            entityCollection.Count);
    }
}

Comentarios

Usa el método Object.Equals para comparar el objeto especificado con los objetos que ya se encuentran en la colección.

Se aplica a