Hello,
The way I understood it, a project being developed in VWD 2008 Express, unlike in the VS2008, can only access one DB. So, I guess I need absolutely to locate all my tables in a unique DB. By tables, I mean: tables I create for my application as well as the default ones created by the framework (ASPNETDB).
Here's my connection string (Do I need to modify it????)
<connectionStrings>
<add name="MyWebsiteConnectionString"
connectionString="data source=.\SQLEXPRESS;
Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;
User Instance=true"
providerName="System.Data.SqlClient"
/></connectionStrings>
- Should I, after I've created ASPNETDB, merely add my tables in it?
Should I, first create a DB, then add default tables in it??? (how?)
To make it simple for now, I would like that DB to be created under the App_Data folder.
Thank you