Implement Async versions of Ado.Net methods
See original GitHub issueAdo.Net classes such as DbCommand
, DbConnection
have async methods that aren’t truly async and just execute the non-async versions and return their result. It would be nice if ODP.NET had a real implementation of those methods (the same way other database providers have) and was truly async.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:18
- Comments:19 (11 by maintainers)
Top Results From Across the Web
Asynchronous Programming - ADO.NET
The async modifier specifies that a method is asynchronous. When calling an async method, a task is returned. When the await operator is...
Read more >Asynchronous Operations - ADO.NET
Asynchronous programming is a core feature of the .NET Framework, and ADO.NET takes full advantage of the standard design patterns. For more ...
Read more >Asynchronous operations in ADO.Net
As an example, there were no asynchronous methods available in the earlier versions of .Net Framework to open a database connection in ADO....
Read more >How to implement a class that support async methods?
Run(() =>_adapter.Fill(ParentManager.MainDataSet, TableName));. But I would look into an alternative solution using other ADO.NET libraries like ...
Read more >ADO.NET 4.5 Async Data Reader and IAsyncHttpHandler
In the second version, I made everything asynchronous by calling the corresponding Async() methods and awaiting the result. I also inherited ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
ODP.NET Core and Managed ODP.NET 23.2 Dev Release are now available on NuGet Gallery with support for async. You can learn more about using ODP.NET async here.
@Giorgi This is a feature the dev team is working on. I’ll have better visibility to when we can deliver this feature in the second half of this year. You can ask me then.