-
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 ca…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 A…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 -
Re: "Does not contain definition" error when trying to call a specific static method in Json.NET
You wouldn't happen to have another version of JSon.Net loaded via your 'My Extensions' ? I'm on a similar build and don't see that issue.1