Hi
I was having a problem executing a stored procedure with EF and found out it was something with the datetime conversion. To execute properly i would need to form my sql like this:
SqlQuery("SET LANGUAGE GERMAN; EXEC MyStoredProcedure {0}, {1}", arg1, arg2)
Without the set langauge, the execution would fail. Is there any possibility to set this somewhere, so that i could ommit it? My MSSQL2008 has it's default langauge set to german already.