Are there any ORM's which provide decent methods for high speed bulk inserts?
The reason I ask is that the Entity framework is fantastic for pulling data out, but completely falls over if you you want to do inserts faster than 10 rows per second.
Update
I am currently inserting at 80,000 rows per second using a DataTable and T-SQL, but it'd be cleaner if I could use an ORM across the board.