I have just created a test SQLServer Express DB when experimenting with EF Code First. The DB has been created correctly and all works. However I cannot see where the connectionstring is for this DB. I expected to find it in Web.config, but not so.
Thanks in advance,
Ed
EF defaults to
./sqlexpressfor the server URI. To change this, add a connectionstring with the name set to the same name as your DBContext classFor example, assuming your DbContext class is called “MyDbContext”: