-
Re: DbFunctions throwing error System.Nullable on DiffMinutes()
For a explanation you can take a look at this answer: http://stackoverflow.com/a/332513/1105812up vote Linq-to-Sql can't translate arbitrary .net functions into SQL. Some DateTime functions can be tr… (View Post) -
Re: Images in html export.
Using the newly introduced ToDump() extensions:void Main() { // Write code to test your extensions here. Press F5 to compile and run. } public static class MyExtensions { // Write custom extension me… (View Post) -
Re: Images in html export.
Here is one ugly way to achieve this (working images in exported result html). Method: - Convert image to base64 encoded string - Display image using data:image URIvar client = new WebClient(); var u… (View Post) -
Re: 1 complement, 1 question and 1 idea
Look at the examples here: http://www.linqpad.net/customvisualizers.aspxvar title = "WPF Control Gallery"; var margin = new Thickness(10); var webClient = new WebClient { Headers = { "… (View Post) -
Re: New LinqPad user help.
Your screenshot is missing. However the code works. When supplying the correct input. C#:var xml = XElement.Load(@"c:\TEMP\MyData.xml"); var query = from e in xml.Elements() where e.Attribu… (View Post)