Click here to Skip to main content
15,884,353 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
While we are working with 3-architecture in asp.net which is the best way to creating database objects(tables,storedprocedures) with in the project i mean adding the database file to the App_Data Folder or By Opening the sql server management studio and creating the tables and stored procedures within SSMS. And Which is the best way to Increase the application Performance?
Posted
Updated 5-Dec-13 4:26am
v2
Comments
AlexDpars 5-Dec-13 11:24am    
First of all you need to separate UI(User Interface) from DAL(Data access layer) in seperate projects. To make your DAL I would suggest you to use Entity Framework its easy to use and to code. To avoid performance issue (and increase it) you should try to find ressources on web about best practices to use when you make your tables/sp into database (make a relationnal database, use fereign key, indexes, primary key etc) and also read about ASP.NET application life cycle etc...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900