tags:

views:

51

answers:

1

Can we use Business Objects which we made & data acess Layer of LINQ?

Because i want to put the validation in Business Objects & also want to use data acess Layer of Linq?

+2  A: 

Maybe you should read This article written by Imar Spaanjaars. It explains very well how to use the DAL (Data Acces Layer) and validation together with LINQ in layered structures. Basically he says to create a different validation layer which validates your objects before sending them to the DAL. I hope it helps you

Rob
He does not use DAL created by dragging all tables in Linq to sql Class
SAHIL SINGLA