-
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…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 -
Re: Reference for learning basic LINQ for SQL? C# Expressions or C# Statements
The compile error you are getting is because you have to name each member in the anonymous type and hence can't just use a constant. Also, in order to compare the anonymous types, they must cont…1