Reputation: 51
please suggest me how to host asp.net website using sql data base. i published sql.mdf file. is it (sql.mdf) possible to place in app_data folder?
Upvotes: 0
Views: 328
Reputation: 499352
You need SQL Server to host the database.
Just putting the .mdf file in the app_data folder will not allow you to access the data in it.
In your website you will need to use ado.net, Linq to SQL or another data access layer to connect to the SQL server.
You should be able to use SQL Server Express, if cost is an issue.
Upvotes: 2