-
Notifications
You must be signed in to change notification settings - Fork 55
Closed
Description
Actual behavior
Currently to produce AsynSeq from IQueryable I have to write
(query {
for biblioteko in context.Bibliotekoj do
where (biblioteko.ID = bibliotekoId)
select biblioteko
}).AsAsyncEnumerable()
|> AsyncSeq.ofAsyncEnum
|> AsyncSeq.tryFirstExpected behavior
But I could write
(query {
for biblioteko in context.Bibliotekoj do
where (biblioteko.ID = bibliotekoId)
select biblioteko
})
|> AsyncSeq.ofIQueryable
|> AsyncSeq.tryFirstRelated information
- FSharp.Control.AsyncSeq 2.0.23
Metadata
Metadata
Assignees
Labels
No labels