<entityFramework>
<defaultConnectionFactory
type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
EDIT: QUESTION was reworded/reworked.
What does <parameter value="v11.0">
mean ? Or better Said Why Have just a Db Value?
What about using a full Data Source ?
And what is LocalDbConnectionFactory implying
These defaults are hard for me to understand.
Using the Sql default connection factory and parameter used SQL server LocalDbConnectionFactory did not work.
This did work:
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="Data Source=localhost; Integrated Security=True; MultipleActiveResultSets=True" />