-
Re: Graphing in LINQPad
See http://stackoverflow.com/questions/18952084/create-graphs-in-linqpad1 · -
Re: adding DbContext connection throws error
Do you get the error if you create a fresh project and build an EF context for AdventureWorks or northwind? And is anyone else experiencing this problem?1 · -
Re: Dump() to dislpay in hexadecimal format
I would just go: 12345.ToString("X").Dump(); If this is too much trouble, you could write an extension method in 'My Extensions' called ToHex that calls ToString("X"). (…1 · -
Re: Is it possible to include code from one .linq file in a different .linq file during compilation?
The only way to do this at present is to add common code to the 'My Extensions' query. Any types that you define here are available to all queries. There's a popular UserVoice request …1 ·
