-
Re: Util.Dif with the Uncapsulate() conflict
You need to use LINQPad.Extensions.Dump(Util.Dif(model .Uncapsulate().Dump(), model2.Uncapsulate()), "DIF"); The intellisense as you type .Dump as you have done is confusing as it implies t…1 · -
Re: Show dif names when diffing lists
If the purpose is just to remind yourself which list is which, then I'd just use Util.Dif(firstList, secondList).DumpTell(); or you can set Enable automatic Dump-headings by default for new quer…1 · -
Re: How to indent a Dump() result?
Would something like this work? void Main(){ var f = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat; f.FirstDayOfWeek.Dump(""); f.NativeCalendarName.DumpIndented(1); f.FullD…2 · -
Re: string_agg use in MSSQL
Interesting I had the opposite problem where EF core using string_agg when it shouldn't. I'm not sure whether your query is supposed to use string_agg, but the following Testwind query does…1 · -
Re: Using WebDriver in LINQPad is pain
Had the same issue and my workaround is to find and set the path to the selenium-manager.exe which then takes care of finding and loading chromedriver. You could just set the path outside of LinqPad,…1 ·