[This is preliminary documentation and is subject to change.]
Async version: Loads result object by executing a query command in the bank backend fetching necessary parcels/records/documents and aggregating the result.
The query may return parcel/s that can be modified and saved back into the store
Namespace: NFX.DataAccess.DistributedAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
Task<Object> QueryAsync(
Command command,
DataVeracity veracity = DataVeracity.Maximum,
DataCaching cacheOpt = DataCaching.LatestData,
Nullable<int> cacheMaxAgeSec = null,
ISession session = null
)
Task<Object> QueryAsync(
Command command,
DataVeracity veracity = DataVeracity.Maximum,
DataCaching cacheOpt = DataCaching.LatestData,
Nullable<int> cacheMaxAgeSec = null,
ISession session = null
)
Function QueryAsync (
command As Command,
Optional veracity As DataVeracity = DataVeracity.Maximum,
Optional cacheOpt As DataCaching = DataCaching.LatestData,
Optional cacheMaxAgeSec As Nullable(Of Integer) = Nothing,
Optional session As ISession = Nothing
) As Task(Of Object)
Function QueryAsync (
command As Command,
Optional veracity As DataVeracity = DataVeracity.Maximum,
Optional cacheOpt As DataCaching = DataCaching.LatestData,
Optional cacheMaxAgeSec As Nullable(Of Integer) = Nothing,
Optional session As ISession = Nothing
) As Task(Of Object)
Task<Object^>^ QueryAsync(
Command^ command,
DataVeracity veracity = DataVeracity::Maximum,
DataCaching cacheOpt = DataCaching::LatestData,
Nullable<int> cacheMaxAgeSec = nullptr,
ISession^ session = nullptr
)
Task<Object^>^ QueryAsync(
Command^ command,
DataVeracity veracity = DataVeracity::Maximum,
DataCaching cacheOpt = DataCaching::LatestData,
Nullable<int> cacheMaxAgeSec = nullptr,
ISession^ session = nullptr
)
abstract QueryAsync :
command : Command *
?veracity : DataVeracity *
?cacheOpt : DataCaching *
?cacheMaxAgeSec : Nullable<int> *
?session : ISession
(* Defaults:
let _veracity = defaultArg veracity DataVeracity.Maximum
let _cacheOpt = defaultArg cacheOpt DataCaching.LatestData
let _cacheMaxAgeSec = defaultArg cacheMaxAgeSec null
let _session = defaultArg session null
*)
-> Task<Object>
abstract QueryAsync :
command : Command *
?veracity : DataVeracity *
?cacheOpt : DataCaching *
?cacheMaxAgeSec : Nullable<int> *
?session : ISession
(* Defaults:
let _veracity = defaultArg veracity DataVeracity.Maximum
let _cacheOpt = defaultArg cacheOpt DataCaching.LatestData
let _cacheMaxAgeSec = defaultArg cacheMaxAgeSec null
let _session = defaultArg session null
*)
-> Task<Object>
Return Value
Type:
Task
Object