ObjectTransactionLocalQueryTObject Method (Boolean) |
Allows querying of the local, uncommitted objects in the transaction.
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic IEnumerable<TObject> LocalQuery<TObject>(
bool includeDeletedObjects = false
)
where TObject : DomainObject
Public Function LocalQuery(Of TObject As DomainObject) (
Optional includeDeletedObjects As Boolean = false
) As IEnumerable(Of TObject)
public:
generic<typename TObject>
where TObject : DomainObject
IEnumerable<TObject>^ LocalQuery(
bool includeDeletedObjects = false
)
member LocalQuery :
?includeDeletedObjects : bool
(* Defaults:
let _includeDeletedObjects = defaultArg includeDeletedObjects false
*)
-> IEnumerable<'TObject> when 'TObject : DomainObject
Parameters
- includeDeletedObjects (Optional)
- Type: SystemBoolean
When true, the enumeration includes the deleted objects.
Type Parameters
- TObject
- The type of the object to enumerate.
Return Value
Type:
IEnumerableTObjectIQueryable for the local objects.
See Also