Click or drag to resize

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
Syntax
public IEnumerable<TObject> LocalQuery<TObject>(
	bool includeDeletedObjects = false
)
where 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: IEnumerableTObject
IQueryable for the local objects.
See Also