-
Re: Sharing Additional References and Namespace Imports with a team
I have 'solved' this by placing LINQPad.exe in the queries folder and opening the file via explorer: drag the .linq file and drop it on the LINQPad executable. This overrides the default file associa… (View Post) -
Re: Force Rich HTML on XML Dump()?
Try Util.ToExpando() See: https://www.linqpad.net/CustomizingDump.aspx Section "Forcing Object Expansion" (View Post) -
Re: Linqpad connection password NO after imaging the instance on server
This is because the password is encrypted and the user/machine encryption key is somehow changed after the imaging process. https://www.linqpad.net/FAQ.aspx#security If I save a connection that uses … (View Post) -
Re: saving result of SP
You can provide parameters as additional arguments:ExecuteStoredProcedure("dbo.p_selectItemsWithPathByLang", "cs") (View Post) -
Re: How to force convert to VARCHAR in LINQPAD?
I'm not sure there is any LINQ-to-SQL method which can be used to translate into CONVERT(). But you could use direct ExecuteQuery() methods to embed this query in your c# statements script with typed… (View Post)