Is it faster than PetaPoco?
No. But that's not the point of asynchronous code. The point is to free up threads while waiting on I/O-bound work to complete, making desktop and mobile apps more responsive and web applications more scalable.
————————————————————————————————————————————————
public Task OpenAsync()
{
return OpenAsync(CancellationToken.None);
}
Is it faster than PetaPoco? No. But that's not the point of asynchronous code. The point is to free up threads while waiting on I/O-bound work to complete, making desktop and mobile apps more responsive and web applications more scalable. ————————————————————————————————————————————————
public Task OpenAsync() { return OpenAsync(CancellationToken.None); }