Table
Namespace: MBrace.Azure.Runtime.Utilities
Functions and values
Function or value | Description |
batch(config table operations)
Signature: config:AzureStorageAccount -> table:string -> operations:TableBatchOperation -> Async<unit>
|
|
delete(config table e)
Signature: config:AzureStorageAccount -> table:string -> e:'T -> Async<unit>
Type parameters: 'T |
|
deleteBatch(config table es)
Signature: config:AzureStorageAccount -> table:string -> es:seq<'T> -> Async<unit>
Type parameters: 'T |
|
getRandomName()
Signature: unit -> String
|
|
getRandomNameWithPrefix(prefix)
Signature: prefix:string -> string
|
|
insert(config table e)
Signature: config:AzureStorageAccount -> table:string -> e:'T -> Async<unit>
Type parameters: 'T |
|
insertBatch(config table es)
Signature: config:AzureStorageAccount -> table:string -> es:seq<'T> -> Async<unit>
Type parameters: 'T |
|
insertOrMerge(config table e)
Signature: config:AzureStorageAccount -> table:string -> e:'T -> Async<unit>
Type parameters: 'T |
|
insertOrReplace(config table e)
Signature: config:AzureStorageAccount -> table:string -> e:'T -> Async<unit>
Type parameters: 'T |
|
merge(config table e)
Signature: config:AzureStorageAccount -> table:string -> e:'T -> Async<'T>
Type parameters: 'T |
|
mergeBatch(config table es)
Signature: config:AzureStorageAccount -> table:string -> es:seq<'T> -> Async<unit>
Type parameters: 'T |
|
query(config table query)
Signature: config:AzureStorageAccount -> table:string -> query:TableQuery<'T> -> Async<ICollection<'T>>
Type parameters: 'T |
|
queryAsync(table query)
Signature: table:CloudTable -> query:TableQuery<'T> -> Async<ICollection<'T>>
Type parameters: 'T |
|
queryDynamic(config table pk)
Signature: config:AzureStorageAccount -> table:string -> pk:string -> Async<ICollection<DynamicTableEntity>>
|
|
queryPK(config table pk)
Signature: config:AzureStorageAccount -> table:string -> pk:string -> Async<ICollection<'T>>
Type parameters: 'T |
|
read(config table pk rk)
Signature: config:AzureStorageAccount -> table:string -> pk:string -> rk:string -> Async<'T>
Type parameters: 'T |
|
readAll(config table)
Signature: config:AzureStorageAccount -> table:string -> Async<ICollection<'T>>
Type parameters: 'T |
|
replace(config table e)
Signature: config:AzureStorageAccount -> table:string -> e:'T -> Async<'T>
Type parameters: 'T |
|
transact(config table pk rk f)
Signature: config:AzureStorageAccount -> table:string -> pk:string -> rk:string -> f:('T -> unit) -> Async<'T>
Type parameters: 'T |
|
transact2(config table pk rk f)
Signature: config:AzureStorageAccount -> table:string -> pk:string -> rk:string -> f:('T -> 'T) -> Async<'T>
Type parameters: 'T |
|
tryMerge(config table e)
Signature: config:AzureStorageAccount -> table:string -> e:'T -> Async<'T option>
Type parameters: 'T |