I'm developing a Windows app in Visual Studio 2012. It opens connection to SQL Server.
app.config
is set to use en-US
for exception messages and it works:
<appSettings>
<add key="DefaultCulture" value="en-US"/>
...
</appSettings>
But when SQL Server throws an exception, its message isn't in English.
How can I, from C#, tell SQL Server, to send me proper messages?