Zaid-Ajaj / Npgsql.FSharp.Analyzer

F# analyzer that provides embedded SQL syntax analysis, type-checking for parameters and result sets and nullable column detection when writing queries using Npgsql.FSharp.
MIT License
137 stars 9 forks source link

Doesn't work when the result of an async execution is piped into Async.AwaitTask #27

Closed Arrow7000 closed 3 years ago

Arrow7000 commented 3 years ago

When piping the result of an Sql.executeAsync or Sql.executeTransactionAsync into Async.AwaitTask the analyzer doesn't try to analyze the SQL.

devenv_Frxgo2mWgE

When I remove the Async.AwaitTask then it does work and shows up errors correctly

image