DataAccessQuery Constructor |
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic DataAccessQuery(
string queryName = "",
DataAccessFilter where = null,
int maxRows = 0,
int startingRow = 0
)
Public Sub New (
Optional queryName As String = "",
Optional where As DataAccessFilter = Nothing,
Optional maxRows As Integer = 0,
Optional startingRow As Integer = 0
)
public:
DataAccessQuery(
String^ queryName = L"",
DataAccessFilter^ where = nullptr,
int maxRows = 0,
int startingRow = 0
)
new :
?queryName : string *
?where : DataAccessFilter *
?maxRows : int *
?startingRow : int
(* Defaults:
let _queryName = defaultArg queryName ""
let _where = defaultArg where null
let _maxRows = defaultArg maxRows 0
let _startingRow = defaultArg startingRow 0
*)
-> DataAccessQuery
Parameters
- queryName (Optional)
- Type: SystemString
Name of the query. - where (Optional)
- Type: Aloe.SystemFrameworks.Domain.DataAccessDataAccessFilter
The filtering - maxRows (Optional)
- Type: SystemInt32
The maximum rows - startingRow (Optional)
- Type: SystemInt32
The starting row.
See Also