ObjectStateManager.GetObjectStateEntry Metoda

Definicja

Zwraca element ObjectStateEntry dla określonego obiektu lub wpisu relacji.

Przeciążenia

GetObjectStateEntry(EntityKey)

Zwraca element ObjectStateEntry dla obiektu lub wpisu relacji z określonym kluczem.

GetObjectStateEntry(Object)

Zwraca obiekt ObjectStateEntry dla określonego obiektu.

GetObjectStateEntry(EntityKey)

Zwraca element ObjectStateEntry dla obiektu lub wpisu relacji z określonym kluczem.

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

Parametry

key
EntityKey

Element EntityKey.

Zwraca

ObjectStateEntry Odpowiedni dla danego EntityKeyelementu .

Wyjątki

Gdy key jest to null.

Gdy określony key nie można odnaleźć w menedżerze stanu.

W elemecie nie istnieje żadna jednostka z określonym EntityKey elementem ObjectStateManager.

Przykłady

W tym przykładzie jest pobierana ObjectStateEntry wartość dla danego EntityKey elementu z elementu ObjectStateManager. Następnie pobiera bieżącą wartość SalesOrderHeader.PurchaseOrderNumber właściwości, zmienia wartość właściwości i wylicza przez kolekcję zmodyfikowanych właściwości.

// 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());
    }
}

Uwagi

Użyj metody , TryGetObjectStateEntry(EntityKey, ObjectStateEntry) aby zwrócić ObjectStateEntry obiekt bez konieczności obsługi wywoływanej InvalidOperationException przez metodę GetObjectStateEntry(EntityKey) .

Dotyczy

GetObjectStateEntry(Object)

Zwraca obiekt ObjectStateEntry dla określonego obiektu.

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

Parametry

entity
Object

Element Object , do którego należy pobrany ObjectStateEntry element.

Zwraca

ObjectStateEntry Odpowiedni dla danego Objectelementu .

Wyjątki

W obiekcie ObjectStateManagernie istnieje żadna jednostka dla określonej Object jednostki .

Uwagi

Użyj metody , TryGetObjectStateEntry(Object, ObjectStateEntry) aby zwrócić ObjectStateEntry obiekt bez konieczności obsługi wywoływanej InvalidOperationException przez metodę GetObjectStateEntry(Object) .

Dotyczy