-
Re: LINQPad 6 v.6.5.5 MissingMethodException Thrown When Running a C# Program with System.Net.Dns
How and why are you adding Framework 4 references? You shouldn't need any additional references, and just one namespace System.Net See http://share.linqpad.net/tgfuie.linq1 · -
Re: multithreading (unexpected?) behavior
You need to set done false in your main method. Unless you have changed your query (and it needs to be recompiled) or have the 'Always use Fresh Process per execution' option in preferences enabled, …2 · -
Re: MSTest with TestRunner inside LinqPad - Unresolved references in LinqPad.dll for a query
Press F4 to Open Query Properties. Go to Advanced and select 'Copy all non-framework references to a single local folder' Also, I need you change your AlwaysTrue() method to be non-static.1 · -
Re: simple way(s) to get schema info in LINQPad script?
The MetaModel Mapping should give you the information. For example, the following should dump out some info on all the columns on all the tables. foreach(var table in Mapping.GetTables()) { ( from dm…2 · -
Re: Is there a more optimal/elegant way to implement sub queries?
You can use the let command to avoid duplication, eg var providers = ( from p in matches group p by new { p.Provnum, p.actualPhone } into g let CustomerList = ( from cl in matches where cl.actualPhon…1 ·