RemoteDataAdapter Async?

Hello there,

I’m looking into the RemoteDataAdapter for .Net using c#. I’m wondering how do I execute a .FillWithDASQL in an asynchronous way?

Do we have some sort of awaitable methods? I could use Task.Run but as you know is not the best thing for IO bound operations which are the most common on this use case.

Thank you in advance

On a .NET Framework project you need to add a reference to the RemObjects.DataAbstract.Async assembly. This assembly provides a set of extension methods for Data Adapter that provide async/await method overloads, including FillAsync and FillWithDASqlAsync

These methods use Task.Factory.StartNew internally.