I'm considering using LINQ-to-SQL for creating the DAL in my app. I normally create the DAL manually as I'm not a big fan of ORM (too much abstraction IMO) but I'm trying to save some time for an impatient client.
My question is, how do you map the classes generated by LINQ-to-SQL to your BLL classes? Do you just add your code to the classes generated by LINQ-to-SQL (they are partial classes) and don't create BLL classes at all (so the class work as both a DAL and BLL class) or how do you normally do it?
Thanks