-
Re: why not linqpad's code use xml-CDATA ?
A .linq file consists of a header in XML, followed by the query text. The query text is not part of the XML document - it exists outside of it, after the XML root element's closing tag. This makes it…1 · -
Re: Linqpad 6 Oracle via EF Core
That will be it: With EF Core 2.x, you can't query tables that don't have a primary key. This includes views. Oracle are planning to support EF Core 3 in the future, which doesn't have that limitatio…1 · -
Re: Lazy loading with EFCore 2.1
Good call - lazy loading is now supported in EF Core, so it should be enabled in LINQPad. I've now updated the driver to make this work. Be sure to enable lazy loading in your DbContext: https://docs…1 · -
Re: System.Numerics.MPFR works in LINQPad 5 but not working in LINQPad 6
After taking a quick look at that package, I can see immediately what the problem is. In the InstallInternalLibrary() method, it starts a process like this:ProcessStartInfo startInfo = new ProcessSta…1 · -
Re: Unlisted nuget packages
OK, I'll make a change to the next build so that ID searches include unlisted packages.1 ·