-
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 contain t…1 · -
Re: Query results limited to 40 rows
There seem to be some Linq Providers that limit the number of results if you don't specify how many you want. The solution is to use something like .Take(1000) or .Take(1000000) if you really can cop…2 · -
Re: Version 5 AnyCPU getting 2GB error
X64 won't solve this issue. File.ReadAllBytes has a specific check to make sure the length is less than 2Gb See https://github.com/dotnet/coreclr/blob/master/src/mscorlib/src/System/IO/File.cs And th…3 · -
Re: How do I get monospaced results
Edit/Preferences/Results. Set the Style Sheet for text (HTML) results to custom and click on Launch Editor and then you can addbody { margin: 0.3em 0.3em 0.4em 0.4em; font-family: Consolas; font-size…5 · -
Re: Grouping with List.
Firstly, your example does not even compile, and as far as I know the standard JsconConvert will not produce output exactly like you describe, but ignoring these issues, it looks like you are groupin…2 ·