-
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 · -
LINQPad 8 early preview now available
https://www.linqpad.net/linqpad8.aspx This includes a number of internal architectural improvements, as well as new features. Let me know your thoughts!4 · -
Re: How to know the number of times a subquery executes?
Here's another way: string[] colors = { "green", "brown", "blue", "red" };var query = from c in colors where c.Length == colors.Max(c2 => c2.Length).Dump (&…2 ·
