I need to create a very scalable webservice. In order to achieve this goal, i really need to provide asynchronous methods around all I/O requests.
I have used Linq-To-SQL in the past. Linq-to-SQL doesn't really provide any asynchronous methods for interacting with the Database.
Do any other .Net O/R (object/Relational) Mappers provide Asynchronous methods out of the box?
[UPDATE] Here is a link to an article about asynchronous LINQ-To-SQL
I don't want to have to write the boiler plate for the asynchronous method if possible
[UPDATE 2] I'm currently writing in C#
I have rolled my own DAL with Asynchronous methods using the CCR framework. The CCR basically demands that I don't block any of it's threads waiting for IO responses.
The good part about my solution so far is that it is down to the bare minimum. Net compatible But as this project grows in terms of scale and functionality, I am facing the mildly daunting task of maintaining raw SQL queries and boiler plate code.
BUT on the other hand if the O/R mappers would be preferredmapper Asynchronous methods are really just a messy hack that adds oddles of complexity I am not better off.
Please don't focus on alternatives to Asynchronous programming.
