-
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 · -
Re: Any plan to support color emoji in editor/result view?
Last time I tested the integrated Edge browser, it was way too feature-poor and unreliable. I'll try it again, but I doubt things have changed. The integrated IE engine is actually pretty robust.1 · -
Re: Any plan to support color emoji in editor/result view?
This will work right now:void Main() { "This contains an 😃 emjoji".WithEmoji().Dump(); } static class Extensions { public static object WithEmoji (this string s) => Util.WithStyle (s, &q…2 ·
