in a asp.net solution, what would you do to a Model project when you have a Business project?
On the interface, I find it very easy and effective to use an objectdatasource mapped to a class which does all the CRUD. I put that class in side the Business project. The class contains linq queries that gets and sets the data from/to the database.
So what is left to the Model project then? the interface talks to the Business project just fine. Is there anything more or better can be done here?
and here's more question, what is supposed to be in your data access layer then if you use Linq to SQL? only DBML files?
I appreciate you time and effort
Best regards