2

What is .NET entity framework default Connection timeout for SQL Server?

I am using mvc 4 and sql server 2014.

Anyone knows for sure?

(This is not duplicate! I asked about Connection time out, not about command timeout!!!)

Vladimir Baranov
  • 31,799
  • 5
  • 53
  • 90
Zvi Redler
  • 1,708
  • 1
  • 18
  • 29

1 Answers1

2

According to the Documentation when using SQL.

SqlConnetionTimeout: The default is 15 seconds.

SqlCommandTimeout: The default is 30 seconds.

A good explanation about connection and command timeouts

Bebolicious
  • 116
  • 1
  • 11