-
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? (View Post) -
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"). (Or you cou… (View Post) -
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 for including o… (View Post)