DataAccessObjectQueryTObject Constructor |
Namespace:
Aloe.SystemFrameworks.Domain.LINQ
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic DataAccessObjectQuery(
ObjectTransaction transaction,
DataAccessRepository repository,
Expression expression = null
)
Public Sub New (
transaction As ObjectTransaction,
repository As DataAccessRepository,
Optional expression As Expression = Nothing
)
public:
DataAccessObjectQuery(
ObjectTransaction^ transaction,
DataAccessRepository^ repository,
Expression^ expression = nullptr
)
new :
transaction : ObjectTransaction *
repository : DataAccessRepository *
?expression : Expression
(* Defaults:
let _expression = defaultArg expression null
*)
-> DataAccessObjectQuery
Parameters
- transaction
- Type: Aloe.SystemFrameworks.DomainObjectTransaction
The transaction to which this will be attached - repository
- Type: Aloe.SystemFrameworks.DomainDataAccessRepository
The repository which will be queried - expression (Optional)
- Type: System.Linq.ExpressionsExpression
The current expression. Used only internally.
See Also