Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upDeleted row count for Seq.``delete all items from single table`` #633
Comments
|
Sounds like a fair request, and doable. :-) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Description
executeDeleteQueryAsync in SqlRuntime.Linq.fs doesn't return deleted row count.
Repro steps
Seq.
delete all items from single tablealways returns 0.Expected behavior
Seq.
delete all items from single tableshould return the number of rows deleted.Known workarounds
Use cmd.ExecuteNonQueryAsync instead of cmd.ExecuteScalarAsync