LocalDB is not supported on this platform
that's is the issue i encountered when trying to connect to Sql Server 2016. i dig into Appsettings.cs
i found that:
public string SQLServerConnectionString
{
get => GetSettingsValue("SQLServerConnectionString", @"Data Source=.\SQLExpress;Initial Catalog=VanArsdelDb;Integrated Security=SSPI");
set => SetSettingsValue("SQLServerConnectionString", value);
}
should i modify this line? or is there anything else to do?
i enabled internet(client) & internet(client & server) but still got the same issue.
LocalDB is not supported on this platform that's is the issue i encountered when trying to connect to Sql Server 2016. i dig into
Appsettings.cs
i found that:should i modify this line? or is there anything else to do? i enabled internet(client) & internet(client & server) but still got the same issue.