ObjectStateManager.TryGetObjectStateEntry Metod

Definition

Försöker returnera ett ObjectStateEntry objekt för ett specifikt objekt eller en relationspost.

Överlagringar

Name Description
TryGetObjectStateEntry(EntityKey, ObjectStateEntry)

Försöker hämta motsvarande ObjectStateEntry för objektet eller relationen med den angivna EntityKey.

TryGetObjectStateEntry(Object, ObjectStateEntry)

Försöker hämta motsvarande ObjectStateEntry för den angivna Object.

TryGetObjectStateEntry(EntityKey, ObjectStateEntry)

Försöker hämta motsvarande ObjectStateEntry för objektet eller relationen med den angivna EntityKey.

public:
 bool TryGetObjectStateEntry(System::Data::EntityKey ^ key, [Runtime::InteropServices::Out] System::Data::Objects::ObjectStateEntry ^ % entry);
public bool TryGetObjectStateEntry(System.Data.EntityKey key, out System.Data.Objects.ObjectStateEntry entry);
member this.TryGetObjectStateEntry : System.Data.EntityKey * ObjectStateEntry -> bool
Public Function TryGetObjectStateEntry (key As EntityKey, ByRef entry As ObjectStateEntry) As Boolean

Parametrar

key
EntityKey

Den angivna EntityKey.

entry
ObjectStateEntry

När den här metoden returnerar, innehåller en ObjectStateEntry för den angivna EntityKey Den här parametern skickas onitialiserad.

Returer

Ett booleskt värde som är true om det finns en motsvarande ObjectStateEntry för det angivna EntityKey, annars . false

Undantag

Värdet null (Nothing i Visual Basic) anges för key.

Exempel

I följande exempel försöker du hämta motsvarande ObjectStateEntry för den angivna EntityKey.

int orderId = 43680;

using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    ObjectStateManager objectStateManager = context.ObjectStateManager;
    ObjectStateEntry stateEntry = null;

    var order = (from o in context.SalesOrderHeaders
                 where o.SalesOrderID == orderId
                 select o).First();

    // Attempts to retrieve ObjectStateEntry for the given EntityKey.
    bool isPresent = objectStateManager.TryGetObjectStateEntry(((IEntityWithKey)order).EntityKey, out stateEntry);
    if (isPresent)
    {
        Console.WriteLine("The entity was found");
    }
}

I följande exempel används TryGetObjectStateEntry(EntityKey, ObjectStateEntry) metoden på den returnerade ObjectStateManager för att hämta ett objekt baserat på dess entitetsnyckel.

private static void ApplyItemUpdates(SalesOrderDetail originalItem,
    SalesOrderDetail updatedItem)
{
    using (AdventureWorksEntities context =
        new AdventureWorksEntities())
    {
        context.SalesOrderDetails.Attach(updatedItem);
        // Check if the ID is 0, if it is the item is new.
        // In this case we need to chage the state to Added.
        if (updatedItem.SalesOrderDetailID == 0)
        {
            // Because the ID is generated by the database we do not need to
            // set updatedItem.SalesOrderDetailID.
            context.ObjectStateManager.ChangeObjectState(updatedItem, System.Data.EntityState.Added);
        }
        else
        {
            // If the SalesOrderDetailID is not 0, then the item is not new
            // and needs to be updated. Because we already added the
            // updated object to the context we need to apply the original values.
            // If we attached originalItem to the context
            // we would need to apply the current values:
            // context.ApplyCurrentValues("SalesOrderDetails", updatedItem);
            // Applying current or original values, changes the state
            // of the attached object to Modified.
            context.ApplyOriginalValues("SalesOrderDetails", originalItem);
        }
        context.SaveChanges();
    }
}

Kommentarer

Använd TryGetObjectStateEntry(EntityKey, ObjectStateEntry) för att returnera en ObjectStateEntry utan att behöva hantera den InvalidOperationException upphöjda metoden GetObjectStateEntry(EntityKey) .

Gäller för

TryGetObjectStateEntry(Object, ObjectStateEntry)

Försöker hämta motsvarande ObjectStateEntry för den angivna Object.

public:
 bool TryGetObjectStateEntry(System::Object ^ entity, [Runtime::InteropServices::Out] System::Data::Objects::ObjectStateEntry ^ % entry);
public bool TryGetObjectStateEntry(object entity, out System.Data.Objects.ObjectStateEntry entry);
member this.TryGetObjectStateEntry : obj * ObjectStateEntry -> bool
Public Function TryGetObjectStateEntry (entity As Object, ByRef entry As ObjectStateEntry) As Boolean

Parametrar

entity
Object

Den Object som hämtas ObjectStateEntry tillhör.

entry
ObjectStateEntry

När den här metoden returnerar, innehåller ObjectStateEntry för den angivna EntityKey Den här parametern skickas onitialiserad.

Returer

Ett booleskt värde som är true om det finns en motsvarande ObjectStateEntry för det angivna objektet, falseannars .

Kommentarer

TryGetObjectStateEntry(Object, ObjectStateEntry) Använd metoden för att returnera en ObjectStateEntry utan att behöva hantera den InvalidOperationException upphöjda metodenGetObjectStateEntry(Object).

Gäller för