Local v8 cloud site cant connect to Umbraco.sdf with a connectionstring (does without one :S)
m
If I delete this connection string completely it works. hence the confusion 😄
<add name="umbracoDbDSN" connectionString="Data Source=|DataDirectory|\Umbraco.sdf;" providerName="System.Data.SqlClient" />
https://cdn.discordapp.com/attachments/1255454647737647134/1255454647993237525/image.png?ex=667d30c1&is=667bdf41&hm=50f2e1f312c955af707d442edc495e525bc4a78010d439f7465ea89b9874715d&
r
Since it's a SQL CE connectionstring, you'll need to change the provider name to
System.Data.SqlServerCe.4.0
If you want to use LocalDb then you can use something like this connectionstring
Server=(localdb)\Umbraco;Integrated Security=True;AttachDbFileName=|DataDirectory|\Umbraco.mdf;
m
Thanks Rasmus it looks like its using local db looking at the file system
as I can see a Umbraco.mdf