-
Re: What is default accessibility modifier for struct Point in my code?
The short answer is that they are both private. So, in your scenario, you must add an internal or public modifier the Point type. The long answer is that LINQPad normally wraps your code in a class c…1 · -
Re: LINQPad 8 early preview now available
Thanks for the report. I spent a fair bit of time on this several days ago. Turns out, it's a known issue with the JIT's tired compilation engine in .NET 8 RC-1/RC-2, and has been fixed in the most r…2 · -
Re: How to set UseCompatibilityLevel in LINQPad8
Are you referring to the dynamic EF Core driver? If so, this will be supported in the next update.1 · -
Re: Why does a LinqPad script targeting .NET 7 identify as .NET Core 3.1?
The value that this function returns is based on the TargetFrameworkAttribute of the entry assembly, which is LINQPad7.Query.dll in the case of LINQPad 7. This assembly has been built to target the l…1 · -
Re: How to know the number of times a subquery executes?
In the case of the northwind database, the query gets translated to SQL and then executed on the database server. It's not possible then to answer the question "How many times does the subquery …1 ·