question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Implement Async versions of Ado.Net methods

See original GitHub issue

Ado.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:closed
  • Created 3 years ago
  • Reactions:18
  • Comments:19 (11 by maintainers)

github_iconTop GitHub Comments

11reactions
alexkehcommented, Jul 29, 2023

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.

7reactions
alexkehcommented, Feb 8, 2021

@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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found