VirtualObjectQueryTObjectReadToBuffer Method |
Executes the query and returns the result in a buffer
Namespace:
Aloe.SystemFrameworks.Domain.LINQ
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic override IBuffer ReadToBuffer(
Nullable<int> maxRows = null
)
Public Overrides Function ReadToBuffer (
Optional maxRows As Nullable(Of Integer) = Nothing
) As IBuffer
public:
virtual IBuffer^ ReadToBuffer(
Nullable<int>^ maxRows = nullptr
) override
abstract ReadToBuffer :
?maxRows : Nullable<int>
(* Defaults:
let _maxRows = defaultArg maxRows null
*)
-> IBuffer
override ReadToBuffer :
?maxRows : Nullable<int>
(* Defaults:
let _maxRows = defaultArg maxRows null
*)
-> IBuffer
Parameters
- maxRows (Optional)
- Type: SystemNullableInt32
The maximum rows to retrieve. Null means to leave the query parameter unchanged.
Return Value
Type:
IBuffer
Buffer, containing the result of the query execution
See Also