Creatio development guide
Это документация Creatio версии 7.9.0. Мы рекомендуем использовать новую версию документации.

EntitySchemaQuery.GetEntity - метод Смотри также  Пример Terrasoft.Core.Entities - пространство имен > EntitySchemaQuery - класс : GetEntity - метод C#

userConnection
User connection.
primaryColumnValue
The value of the primary key.

Glossary Item Box

Gets the Entity instance by the specified primary key, using the specified user connection.

Синтаксис

public Entity GetEntity( 
   UserConnection userConnection, 
   object primaryColumnValue 
)

Параметры

userConnection
User connection.
primaryColumnValue
The value of the primary key.

Тип возвращаемого значения

The Entity instance with the primaryColumnValue primary key.

Пример

EntitySchemaManager esqManager = UserConnection.EntitySchemaManager;

// Создание экземпляра запроса с корневой схемой "Сity".
var esqResult = new EntitySchemaQuery(esqManager, "City");
esqResult.AddColumn("Name");

var cityUId = new Guid("100B6B13-E8BB-DF11-B00F-001D60E938C6");

// Выполнение запроса для получения одной записи с идентификатором cityUId.
Entity esqEntity = esqResult.GetEntity(UserConnection, cityUId);

if (esqEntity != null)
{
    // Выполнение действий с колонками объекта.
    String cityName = esqEntity.GetTypedColumnValue<String>("Name");
}

// Значение переменной cityName в результате успешного выполнения: Новосибирск 

Смотри также

© Terrasoft 2002-2017.

Был ли данный материал полезен?

Как можно улучшить эту статью?