-
Re: How do I format the output window?
Another option is to request a fixed font on demand, with Util.WithStyle:Util.WithStyle ( <whatever-you-want-to-dump> , "font-family:consolas") You can write this as an extension meth…2 · -
Re: LinqPad single exe
You can do this by including the assemblies as embedded resources and loading them on demand via the AppDomain's AssemblyResolve event. Look at the last code listing on this page: http://www.albahari…2 · -
Re: Linq query not returning the generated SQL results in entity framework object context connection
This should be fixed in LINQPad 5 - can you try running it in LINQPad 5 and confirming?1 · -
Re: Is it possible to use diferent Styles (Css) for diferent Queries
The most recent beta lets you apply styles when calling Dump: Util.WithStyle (Customers.Take (100), "text-align: right").Dump(); This won't achieve the selective styling you're after, howev…1 · -
Re: Mismatch dll reference between autocompletion and executing
Yes, I'll look into it. Intellisense should also use the version in the LINQPad folder (and warn you about the double.)1 ·