-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug: Async fetch operations are not using the DbDataReader.ReadAsync method (in v1.12.0 to v1.12.2) #601
Comments
We are aware of this and is currently working on the solution. This will be a part of the next release. |
The fix is now deployed and is available at RepoDb v1.12.3. |
Hi. I was looking to fill similar ticket but since you were faster I will ask question part of my issue :) I am looking at |
You are correct, this is a valid question to the |
Yeah, ok, thanks. I think I was associating degraded async performance of larger data sets with that casting and type conversions, but after I updated to 1.12.3 it's returning my data blazing fast nonetheless. |
Remember, there is no conversion there. It is only casting it, but to make it perfect, you are correct that the mentioned |
Addition to #601 - removed redundant type casting
This has been fixed and is now available at RepoDb v1.12.3. Closing this incident ticket now. |
Affected by the latest release and core compiler updates, the current fetch operations are not using the
DbDataReader.ReadAsync()
operations. All theAsync
fetch operations (i.e.: BatchQueryAsync, QueryAsync and ExecuteQueryAsync) are using this sync method.The text was updated successfully, but these errors were encountered: