-
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) -
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! (View Post) -
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 (&… (View Post) -
Re: Seems like incorrect behavior of LINQPad
LINQPad's query processes don't shut down after the main thread finishes. This makes it faster, as well as more useful as a scripting tool - features such as Util.Cache rely on preserving the process… (View Post)