I use this connection string with SQLExpress and I can get the error messages in portuguese.
<connectionStrings>
<add name="AssociGestorDb"
providerName="System.Data.SqlClient"
connectionString="Server=.\SQLExpress;
Trusted_Connection=true;
Current Language=Portuguese;
Database=AssociGestorDb"/>
</connectionStrings>
I try to do the same with (LocalDB)\v11.0 but do not work.
<connectionStrings>
<add name="AssociGestorDb"
connectionString="Server=(LocalDB)\v11.0;
Database=AssociGestorDb;
Integrated Security=True;
Current Language=Portuguese;
Connect Timeout=30"
providerName="System.Data.SqlClient" />
</connectionStrings>
What is the proper way to get the error messages in portuguese using (LocalDB)\v11.0?