-
Re: CS1061 Issue
So what is G method? Either you are missing this method or it exists in another namespace that you haven't told Linqpad to use. I would guess this is an extension method which isn't in your My Extens… (View Post) -
Re: Disable auto scroll to input focus when changing tabs
Just FYI, your script does show the issue for me but only if I hide the editor. Which means the following also shows the issue "Top".Dump();Util.AutoScrollResults = true;var query = from i … (View Post) -
Re: Any way to suppress vulnerability warnings?
If you expand the warning it tells you how to suppress the warning. (View Post) -
Re: LinqPad8 is showing me a cached Entity ?
I'm guessing this is Linq2Sql caching the entity. There are a number of ways to resolve this. If you are not going to be calling SubmitChanges() then you can disable the tracker and caching at the st… (View Post) -
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… (View Post)