Much as I hate to say it, there are some tasks which LLBLGen is not suited for (not many...
) and bulk inserts is one of them. There is only so much that can be done to optimise inserting 100K rows one at a time, you'd probably find that doing it using a plain DataSet would not be a whole lot faster.
I'm a pragmatist, and I tend to use the correct tool for the job, and as much as I love LLBLGen, SQLBulkCopy, or bcp are the correct tools for doing bulk inserts. (The clue is in the name...!)
If you are determined to carry on with LLBLGen, have you tried batching your inserts, and experimenting with the batch size ?
Matt