-
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… (View Post) -
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… (View Post) -
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. (View Post) -
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… (View Post) -
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 … (View Post)