Witam,

mam problem, z którym sobie nie potrafię poradzić. Działałem na VS 2015 i MsSQL Serverze 2015. Tak w ramach nauki pobrałem sobie projekt z kieszeni wujka Google w celu analizy. No i na samym wstępie utknąłem.

W tym projekcie jest użyta stara wersja MSSQL Server 2015. W tym celu należałoby zmienić kod connectionStringa. Tak też uczyniłem na niezliczoną ilość sposobów. Dalej wychodzi ten sam problem otóż:

"The Data Source value in the connection string specifies an instance of SQL Server that is not installer."

Przesyłam mój cały app.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>

    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  </configSections>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="v11.0" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>

  <connectionStrings>
    <add name="TaskManagerString" connectionString="Data Source=(LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\TaskManagerDB.mdf;Initial Catalog=TaskManagerDB;Integrated Security=True" providerName="System.Data.SqlClient" />
  </connectionStrings>

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

Jakby ktoś miał chwilkę czasu i mógłby pomóc byłbym bardzo wdzięczny.

Link do projektu: http://scheduler-net.com/docs/tutorials-task-manager-mvc5.html#project_description