-
Re: Invoking a PowerShell Script from LINQ
There's nothing out of the box, although you could write a method in 'My Extensions' easily enough to help with this, using the PS management types. For instance, the following executes the Get-Proce…1 · -
Re: Images in html export.
nescafe is using the overload of Util.Image that takes a URI rather than a byte array, so there is no associated image file.1 · -
Re: Deja Vu - Cannot open LinqPad without every aspect of referencing DLL's broken
I guess the crux of your main question is:Why would I add references to dll's that are already referenced by my project's dll? The answer depends on what kind of error you're getting. There are two p…1 · -
Re: Is there a way to dump the DbDataReader itself and not the data?
This is now easily possible from LINQPad v5.09.04, with LINQPad's new Util.ToExpando method: Util.ToExpando (myDataReader).Dump();3 · -
Re: Specify Linqpad Connection Programatically?
This strategy will work if all the databases in question have the same schema. You can retrieve the connection string from another query as follows: Util.GetMyQueries().First (x => x.FilePath == &…3 ·
