-
Re: Issue: FileNotFoundException
I've just uploaded a new beta: https://www.linqpad.net/LINQPad6.aspx#beta This includes special support for the Office Interop COM libraries. Just press F4 and click Add Office Interop. This will add…1 · -
Re: LINQPad 6 and .NET Core 3.1
Thanks for reporting - there's now a beta that runs on netcore 3.1 RTM: https://www.linqpad.net/LINQPad6.aspx#beta I'll get this rolled out to production very soon if there are no issues.1 · -
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 ·