EntityRepositoryGetObjectKeys Method |
Gets the repository-specific object keys from the objects in the specified buffer.
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic IEnumerable<Guid> GetObjectKeys(
IBuffer buffer,
bool includeDeletedObjects = false
)
Public Function GetObjectKeys (
buffer As IBuffer,
Optional includeDeletedObjects As Boolean = false
) As IEnumerable(Of Guid)
public:
IEnumerable<Guid^>^ GetObjectKeys(
IBuffer^ buffer,
bool includeDeletedObjects = false
)
member GetObjectKeys :
buffer : IBuffer *
?includeDeletedObjects : bool
(* Defaults:
let _includeDeletedObjects = defaultArg includeDeletedObjects false
*)
-> IEnumerable<Guid>
Parameters
- buffer
- Type: Aloe.SystemFrameworks.Domain.DataAccessIBuffer
The buffer from which to get the object ids. - includeDeletedObjects (Optional)
- Type: SystemBoolean
if set to true enumerates also deleted objects.
Return Value
Type:
IEnumerableGuidThe keys of the objects.
See Also