RawEntityDataTEntityFillEntity Method |
Fills a given entity instance with the data from a specified record in the data set.
The
EntityIdentifier property, if it exists in the data set,
is ignored; it is not required to match the entity to be filled.
Namespace:
AGI.Foundation.Tracking
Assembly:
AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public void FillEntity(
int recordIndex,
Transaction transaction,
TEntity entity
)
Public Sub FillEntity (
recordIndex As Integer,
transaction As Transaction,
entity As TEntity
)
public:
void FillEntity(
int recordIndex,
Transaction^ transaction,
TEntity entity
)
member FillEntity :
recordIndex : int *
transaction : Transaction *
entity : 'TEntity -> unit
Parameters
- recordIndex
- Type: SystemInt32
The index of the entity record from which to fill the entity. - transaction
- Type: AGI.FoundationTransaction
The transaction to use to set properties of the entity. - entity
- Type: TEntity
The entity to fill.
See Also