My basic ASP.NET structure is always 3 projects
- DAL = Data accesses layer – dealing with the db
- Bussiness logic layer – dealing with all action and functions
- Presentation layer – Present data to website
Do i need to change my basic structure because i want to develop with LINQ to sql?
What is the best structure to develop with LINQ to sql?
No. The structure, can remain the same. But I would use Entity Framework instead, that’s what Microsoft is pushing in the near future.