how a 3 tier architecture works with C# & sql server 2005?
how a business layer & data layer is created?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit ChoudharyPosted Mar 11, 2010, 4:50 AM
The 3 tier architecture is separating your dataAccessing, Business Logics and Presentations.
DataAccessing- when you connect to database to retrieve, insert or update data.
Business Logic- Some function that deals what to do, when to do, how to do ect....
Presentation- Showing information to the user.
Here the Article that give you very good and short explanation about all three layer and how to create them in c#. you can user any database to implement this architecture in c#
3 tier architecture in c#
Also download the attach project that is implemented using 3-Tier architecture.
Please mark as answer if it helps you.