-
Re: How to hook up cancel query event
Do you specifically want to catch the red button? I'm not sure how to do that.. If you want to clean up after query run, both cancelled and failed:// If you hit cancel within two seconds, a message b… (View Post) -
Re: Util.Run() cannot run consecutive scripts with identical data connection
Joe, as you're currently zooming in on the Util.Run() functionality, this problem still occurs in latest beta (v5.20.02). Work-around is to add a wait of at least 100 milliseconds between each run.fo… (View Post) -
Re: CS1929 error
Either use constant values in your datetime functions or use the SqlMethods mentioned in this MSDN article: https://msdn.microsoft.com/en-us/library/bb882657.aspx Example constant value in AddDays():… (View Post) -
Re: Release Notes for 5.10.0
Yep.. in LINQPad, go to Help and click What's New to see change log for current version (and previous versions). (View Post) -
Re: DbFunctions throwing error System.Nullable on DiffMinutes()
As per the linked MSDN link, this should work (I'd still prefer the direct comparison mentioned above):System.Data.Linq.SqlClient.SqlMethods.DateDiffMinute(visitclock, v.START_TIME) > 0 (View Post)