top | item 43547687

(no title)

malakai521 | 11 months ago

`var post = await _postService.getById(id);`

the F# equivalent is

`let! post = _postService.getById id`

discuss

order

alternatex|11 months ago

You're missing the task {} block

neonsunset|11 months ago

This assumes the context is already a task computation expression, which is what you'd have in asynchronous code.

sWW26|11 months ago

and the C# is missing the `async Task` boilerplate