EntityKey Класс

Определение

Предоставляет устойчивую ссылку на объект, являющийся экземпляром типа сущности.

public ref class EntityKey sealed : IEquatable<System::Data::EntityKey ^>
[System.Runtime.Serialization.DataContract(IsReference=true)]
[System.Serializable]
public sealed class EntityKey : IEquatable<System.Data.EntityKey>
[<System.Runtime.Serialization.DataContract(IsReference=true)>]
[<System.Serializable>]
type EntityKey = class
    interface IEquatable<EntityKey>
Public NotInheritable Class EntityKey
Implements IEquatable(Of EntityKey)
Наследование
EntityKey
Атрибуты
Реализации

Примеры

В этих примерах показано, как создать и использовать EntityKey.

using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    Object entity = null;
    IEnumerable<KeyValuePair<string, object>> entityKeyValues =
        new KeyValuePair<string, object>[] {
            new KeyValuePair<string, object>("SalesOrderID", 43680) };

    // Create the  key for a specific SalesOrderHeader object.
    EntityKey key = new EntityKey("AdventureWorksEntities.SalesOrderHeaders", entityKeyValues);

    // Get the object from the context or the persisted store by its key.
    if (context.TryGetObjectByKey(key, out entity))
    {
        Console.WriteLine("The requested " + entity.GetType().FullName +
            " object was found");
    }
    else
    {
        Console.WriteLine("An object with this key " +
            "could not be found.");
    }
}
using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    try
    {
        // Create the key that represents the order.
        EntityKey orderKey =
            new EntityKey("AdventureWorksEntities.SalesOrderHeaders",
                "SalesOrderID", orderId);

        // Create the stand-in SalesOrderHeader object
        // based on the specified SalesOrderID.
        SalesOrderHeader order = new SalesOrderHeader();
        order.EntityKey = orderKey;

        // Assign the ID to the SalesOrderID property to matche the key.
        order.SalesOrderID = (int)orderKey.EntityKeyValues[0].Value;

        // Attach the stand-in SalesOrderHeader object.
        context.SalesOrderHeaders.Attach(order);

        // 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 = orderId,
            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);

        context.SaveChanges();
    }
    catch (InvalidOperationException)
    {
        Console.WriteLine("Ensure that the key value matches the value of the object's ID property.");
    }
    catch (UpdateException)
    {
        Console.WriteLine("An error has occurred. Ensure that an object with the '{0}' key value exists.",
        orderId);
    }
}

Комментарии

Объекты EntityKey неизменяемые, то есть после создания их нельзя изменить.

Дополнительные сведения см. в разделе Работа с ключами сущностей.

Конструкторы

EntityKey()

Инициализирует новый экземпляр класса EntityKey.

EntityKey(String, IEnumerable<EntityKeyMember>)

Инициализирует новый экземпляр класса EntityKey именем набора сущностей и коллекцией IEnumerable<T> объектов EntityKeyMember.

EntityKey(String, IEnumerable<KeyValuePair<String,Object>>)

Инициализирует новый экземпляр класса EntityKey с именем набора сущностей и общей коллекцией KeyValuePair.

EntityKey(String, String, Object)

Инициализирует новый экземпляр класса EntityKey именем набора сущностей и конкретной парой ключей сущности.

Поля

EntityNotValidKey

Простой ключ EntityKey, определяющий сущность, полученную после неудачной операции TREAT.

NoEntitySetKey

Одноэлементный ключ EntityKey, по которому определяется сущность, доступная только для чтения.

Свойства

EntityContainerName

Получает или задает имя контейнера сущностей.

EntityKeyValues

Получает или задает значения ключей, связанные с этим объектом EntityKey.

EntitySetName

Получает или задает имя набора сущностей.

IsTemporary

Возвращает значение, определяющее, является ли ключ EntityKey временным.

Методы

Equals(EntityKey)

Возвращает значение, указывающее, равен ли экземпляр заданному ключу EntityKey.

Equals(Object)

Возвращает значение, показывающее, равен ли экземпляр указанному объекту.

GetEntitySet(MetadataWorkspace)

Возвращает набор сущностей для этого ключа сущности из определенной рабочей области метаданных.

GetHashCode()

Служит в качестве хэш-функции для текущего объекта EntityKey. Метод GetHashCode() может применяться в алгоритмах и структурах данных хэширования, например в хэш-таблицах.

GetType()

Возвращает объект Type для текущего экземпляра.

(Унаследовано от Object)
MemberwiseClone()

Создает неполную копию текущего объекта Object.

(Унаследовано от Object)
OnDeserialized(StreamingContext)

Вспомогательный метод, используемый для десериализации ключа EntityKey.

OnDeserializing(StreamingContext)

Вспомогательный метод, используемый для десериализации ключа EntityKey.

ToString()

Возвращает строку, представляющую текущий объект.

(Унаследовано от Object)

Операторы

Equality(EntityKey, EntityKey)

Сравнивает два объекта EntityKey.

Inequality(EntityKey, EntityKey)

Сравнивает два объекта EntityKey.

Применяется к