Chaining async methods. Method not found
I want to have something like this
but this gives me an error
if I write like this
or like this
then it works as expected
but second and third solution it's ugly.
How to achieve desired syntax?
but this gives me an error
Cannot resolve symbol 'VerifyUser' it's because CreateUser returns Task<T>if I write like this
or like this
then it works as expected
but second and third solution it's ugly.
How to achieve desired syntax?