• Source
    1. <?xml version="1.0" encoding="utf-8"?>
    2. <configuration>
    3. <configSections>
    4. <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    5. <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    6. </configSections>
    7. <startup>
    8. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
    9. </startup>
    10. <entityFramework>
    11. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
    12. <parameters>
    13. <parameter value="mssqllocaldb" />
    14. </parameters>
    15. </defaultConnectionFactory>
    16. <providers>
    17. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    18. </providers>
    19. </entityFramework>
    20. <connectionStrings>
    21. <add name="SetupConnectionString" connectionString="server=.; database=DemoDbCodeFirst; integrated security=true;" providerName="System.Data.SqlClient" />
    22. </connectionStrings>
    23. </configuration>