-
Re: LINQPad should warn if a user function will override a DataContext method
This doesn't require an override because there is no method to override, but Linq2Sql is just looking for a method with this name and uses it if it exists. You can see more if you look at the referen… (View Post) -
Re: How to convert string to int for SQL?
Your simple task is made more complicated by the fact that you have non-integer values in the column, eg 37E024 I don't think Linq2Sql supports isNumeric, so you can either :fix your table structure … (View Post) -
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… (View Post) -
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… (View Post) -
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… (View Post)