ObjectStateManager.GetObjectStateEntry Método

Definição

Retorna um ObjectStateEntry para uma entrada de objeto ou relação específica.

Sobrecargas

GetObjectStateEntry(EntityKey)

Retorna um ObjectStateEntry para o objeto ou para a entrada de relação com a chave especificada.

GetObjectStateEntry(Object)

Retorna um ObjectStateEntry para o objeto especificado.

GetObjectStateEntry(EntityKey)

Retorna um ObjectStateEntry para o objeto ou para a entrada de relação com a chave especificada.

public:
 System::Data::Objects::ObjectStateEntry ^ GetObjectStateEntry(System::Data::EntityKey ^ key);
public System.Data.Objects.ObjectStateEntry GetObjectStateEntry (System.Data.EntityKey key);
member this.GetObjectStateEntry : System.Data.EntityKey -> System.Data.Objects.ObjectStateEntry
Public Function GetObjectStateEntry (key As EntityKey) As ObjectStateEntry

Parâmetros

Retornos

O ObjectStateEntry correspondente para o EntityKey fornecido.

Exceções

Quando key é null.

Quando o key especificado não pode ser encontrado no gerenciador de estado.

Nenhuma entidade com o EntityKey especificado existe no ObjectStateManager.

Exemplos

Este exemplo obtém o ObjectStateEntry para o determinado EntityKey do ObjectStateManager. Em seguida, ele obtém o valor atual da SalesOrderHeader.PurchaseOrderNumber propriedade, altera o valor da propriedade e enumera por meio da coleção de propriedades modificadas.

// Specify the order to update.
int orderId = 43680;

using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    try
    {
        var order = (from o in context.SalesOrderHeaders
                     where o.SalesOrderID == orderId
                     select o).First();

        // Change the status of an existing order.
        order.Status = 1;

        // Delete the first item in the order.
        context.DeleteObject(order.SalesOrderDetails.First());

        // Create a new SalesOrderDetail object.
        // You can use the static CreateObjectName method (the Entity Framework
        // adds this method to the generated entity types) instead of the new operator:
        // SalesOrderDetail.CreateSalesOrderDetail(1, 0, 2, 750, 1, (decimal)2171.2942, 0, 0,
        //                                         Guid.NewGuid(), DateTime.Today));
        SalesOrderDetail detail = new SalesOrderDetail
        {
            SalesOrderID = 0,
            SalesOrderDetailID = 0,
            OrderQty = 2,
            ProductID = 750,
            SpecialOfferID = 1,
            UnitPrice = (decimal)2171.2942,
            UnitPriceDiscount = 0,
            LineTotal = 0,
            rowguid = Guid.NewGuid(),
            ModifiedDate = DateTime.Now
        };
        order.SalesOrderDetails.Add(detail);

        // Get the ObjectStateEntry for the order.
        ObjectStateEntry stateEntry =
            context.ObjectStateManager
            .GetObjectStateEntry(order);
        Console.WriteLine("State before SaveChanges() is called: {0}",
            stateEntry.State.ToString());

        // Save changes in the object context to the database.
        int changes = context.SaveChanges();

        Console.WriteLine("State after SaveChanges() is called: {0}",
            stateEntry.State.ToString());

        Console.WriteLine(changes.ToString() + " changes saved!");
        Console.WriteLine("Updated item for order ID: "
            + order.SalesOrderID.ToString());

        // Iterate through the collection of SalesOrderDetail items.
        foreach (SalesOrderDetail item in order.SalesOrderDetails)
        {
            Console.WriteLine("Item ID: "
                + item.SalesOrderDetailID.ToString() + "  Product: "
                + item.ProductID.ToString() + "  Quantity: "
                + item.OrderQty.ToString());
        }
    }
    catch (UpdateException ex)
    {
        Console.WriteLine(ex.ToString());
    }
}

Comentários

Use o TryGetObjectStateEntry(EntityKey, ObjectStateEntry) método para retornar um ObjectStateEntry objeto sem precisar manipular o InvalidOperationException gerado pelo GetObjectStateEntry(EntityKey) método .

Aplica-se a

GetObjectStateEntry(Object)

Retorna um ObjectStateEntry para o objeto especificado.

public:
 System::Data::Objects::ObjectStateEntry ^ GetObjectStateEntry(System::Object ^ entity);
public System.Data.Objects.ObjectStateEntry GetObjectStateEntry (object entity);
member this.GetObjectStateEntry : obj -> System.Data.Objects.ObjectStateEntry
Public Function GetObjectStateEntry (entity As Object) As ObjectStateEntry

Parâmetros

entity
Object

O Object ao qual o ObjectStateEntry recuperado pertence.

Retornos

O ObjectStateEntry correspondente para o Object fornecido.

Exceções

Não existe nenhuma entidade com o Object especificado no ObjectStateManager.

Comentários

Use o TryGetObjectStateEntry(Object, ObjectStateEntry) método para retornar um ObjectStateEntry objeto sem precisar manipular o InvalidOperationException gerado pelo GetObjectStateEntry(Object) método .

Aplica-se a