G
Size: a a a
SN

rqTypeДБ
SN
G
type Customer = {
[<JsonProperty(PropertyName = "customer_no")>]
CustomerNumber : int
}SN
type Customer = {
[<JsonProperty(PropertyName = "customer_no")>]
CustomerNumber : int
}SN
AH
((
seq<int * Async<bool>> в seq<int * bool>?AH
Seq.map(fun (i, asyncBool) ->
i, Async.RunSyncronously asyncBool
)
AH
Ɖ
IC
((
AH
asyncSeq {
for i, asyncBool in someSeq do
let! bool = asyncBool
yield i, bool
}IC
((
AH
someSeq
|> Seq.map(fun (i, asyncBool) -> async {
let! bool = asyncBool
return i, bool
})
|> Async.Parallel