ObjectTransactionLocalQuery Method (Repository, Boolean) |
Allows querying of the local, uncommitted objects in the transaction.
This is the untyped overload of the method.
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic IEnumerable<DomainObject> LocalQuery(
Repository repository,
bool includeDeletedObjects = false
)
Public Function LocalQuery (
repository As Repository,
Optional includeDeletedObjects As Boolean = false
) As IEnumerable(Of DomainObject)
public:
IEnumerable<DomainObject^>^ LocalQuery(
Repository^ repository,
bool includeDeletedObjects = false
)
member LocalQuery :
repository : Repository *
?includeDeletedObjects : bool
(* Defaults:
let _includeDeletedObjects = defaultArg includeDeletedObjects false
*)
-> IEnumerable<DomainObject>
Parameters
- repository
- Type: Aloe.SystemFrameworks.DomainRepository
The repository to use for the searching. - includeDeletedObjects (Optional)
- Type: SystemBoolean
When true, the enumeration includes the deleted objects.
Return Value
Type:
IEnumerableDomainObject
IEnumerable for the local objects.
See Also