First, to be clear, I am not talking about LINQ to SPRocs.
I have an existing DAL that uses over a 100 stored procedures. This was created when this program was a web app. Now it is a winform app in a sometimes connected environment that uses a local db. I have left the existing DAL in place in the interest of time but am now finding
My question is are there any pitfalls I should be aware of to creating a dbml(datacontext) to my program to go forward with while leaving the existing DAL in place?
This would allow me to replace the existing DAL in small steps.