How do you set Command Timeout in Linqpad?
Asked Answered
K

3

23

I have recently started using LinqPad, and bought the Autocomplete option and am really loving it. This is an excellent product!

I wanted to ask if there is a way for me to control the command timeout that used when querying a SQL Server database in LinqPAD (I am using c# statements)? I can't see where we have access to the actual connection string, and I have some large queries for reporting that are timing out. It appears that the timeout is hard-coded at 30 seconds.

Thanks in advance for any help!

Krilov answered 9/12, 2011 at 16:47 Comment(0)
M
19

I have run queries that have taken minutes and never had a command time out. That said, here's how you change it...


All of the work you perform inside a UserQuery. The CommandTimeout is a property of that.

this.CommandTimeout = 60;

Have a look at all the properties under this. It gives you a nice insight into some of the things you can do.

Multifid answered 9/12, 2011 at 16:52 Comment(5)
THANK YOU! (Especially for the near-immediate response! (kicking myself for not having checked out 'this'!) (given that I do it a million times a day on my own code!) Anyway, it worked perfectly!Krilov
It's a nice feature, I not sure why it isn't documented better.Multifid
@user1090088 - Would you mind accepting the answer in keeping with the SO style: stackoverflow.com/faq#howtoask ? Thanks.Multifid
By default, LINQPad sets the command timeout to infinite. If you're getting timeout errors, I would suspect it's either the connection (rather than the command) that's timing out, or the timeout is to do with the network or server.Racketeer
@Joe Albahari, I do get time-outs when/if LinqPad connects to DB using an EF-library. Is there a way to set a/the default time-out to infinite for EF-libraries. (My answer already shows an ad hoc way for the command window.)Ground
G
15

As mentioned in @DaveShaw's answer when querying a SQL Server database in LinqPAD using a 'regular' connection, you can use:

this.CommandTimeout = 60

However, this property is not available when LinqPad connects to DB using an EF-library. Using this.CommandTimeout results in:

'UserQuery' does not contain a definition for 'CommandTimeout' and no extension method 'CommandTimeout' accepting a first argument of type 'UserQuery' could be found (press F4 to add a using directive or assembly reference)

Some puzzling and a this answer about EF time-outs in general led me to use this on an EF-connection:

(this as IObjectContextAdapter).ObjectContext.CommandTimeout = 60;
Ground answered 21/3, 2013 at 9:37 Comment(0)
M
5

For Entity Framework Core connections used the following property instead.
this.Database.SetCommandTimeout(120);

Motive answered 27/10, 2020 at 21:12 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.