Correlation b/e LINQ and Datasets?

diegohb

New member
Joined
Jan 25, 2008
Messages
1
Programming Experience
3-5
In the n-tier design practice, how does LINQ and datasets fit into the Data Access Layer and Business Logic Layer model?

Would one use LINQ in the DAL and then datasets (just strongly-typed data tables) would make up the BLL with the business rules and all... ?

I have the same issue in figuring out how I would use mygeneration's doodads in the same architecture DAL/BLL.
 
Personally, I would use the automatically built Linq to SQL classes as Data Access Layer, and build business logic into the editable partial classes that go with them, and also into separate utility classes.
 
Back
Top