-
Re: Add a reference to C# program
No need to add the dll, just reference it, eg System.Web.HttpUtility.HtmlEncode("1&2").Dump(); There's no longer an option to add Framework assembly references. In keeping with Vis…2 · -
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 re…1 · -
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 struc…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 ca…2 · -
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 ·