-
Re: testconnection in dynamic driver
The TestConnection helper method instantiates the data context to ensure that things such as assembly resolution work. You can add your own code in addition to calling this method to perform a more t…1 · -
Re: LP7 does not handle implicit usings
Create a statements-based query or a .cs file with the following content: global using global::System;global using global::System.Collections.Generic;global using global::System.IO;global using globa…1 · -
Re: updating results
LINQPad's fluent charting API doesn't allow for this, but the underlying WinForms charting control does. Hence you can do this: var customers = new[]{ new { Name = "John", TotalOrders = 100…1 · -
Re: Help with silent install for deployment
I'll get this fixed in the next release. In the meantime, you can work around this by removing the /activateall option from the setup command, and activating LINQPad afterwards as follows: "%pro…1 · -
Re: F# compilation error in Linqpad 7 when trying to use FSharp.Data packages
Looks like it could be this issue: https://github.com/fsprojects/FSharp.Data.SqlClient/issues/373 Fundamentally, it's a difficult problem to solve in .NET Core. Without application domains, resolving…1 ·