Click or drag to resize

EntityRepositoryGetObjectsByPrimaryKeys Method

Gets or loads the objects with the specified primary keys. The objects are eagerly mass loaded.

Namespace:  Aloe.SystemFrameworks.Domain
Assembly:  Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntax
public IEnumerable<EntityObject> GetObjectsByPrimaryKeys(
	ObjectTransaction transaction,
	IEnumerable<Guid> primaryKeys
)

Parameters

transaction
Type: Aloe.SystemFrameworks.DomainObjectTransaction
The transaction.
primaryKeys
Type: System.Collections.GenericIEnumerableGuid
The primary keys.

Return Value

Type: IEnumerableEntityObject

Return Value

Type: IEnumerableEntityObject
The objects.
Exceptions
ExceptionCondition
ArgumentNullException When transaction or primaryKeys is null.
See Also