Chapter 8 - LocalDB needed
Where can I find the mdf files for chapter 8 ? The web.config seems to refer to these DBs and I don't have them installed. I have an important project deadline and this chapter has the information I need (jQuery). But I cannot compile and run any of the code in here because of these dependencies.
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirec tory|\aspnet-MvcMusicStore-20131025034205.mdf;Initial Catalog=aspnet-MvcMusicStore-20131025034205;Integrated Security=True" providerName="System.Data.SqlClient" />
<add name="MusicStoreEntities" connectionString="Data Source=(LocalDB)\v11.0; AttachDbFilename=|DataDirectory|\MvcMusicStore.mdf ; Integrated Security=True" providerName="System.Data.SqlClient" />
</connectionStrings>
|