I have a .NET WCF service that will need to handle multiple client requests at once.
The service makes database calls (both read and write) for each client request.
Could IO completion ports be useful for the database access portions of this code to improve concurrent performance? How would they be used in such a situation?