-
[LINQPad 6] Add option to enable nullable reference types by default for all queries
With the release of LINQPad 6 and C# 8, I want to fully embrace nullable reference types. But it gets tiring adding #nullable enable to every script I create. Can an advanced option be added to enabl… (View Post) -
Using autocomplete changes the indentation level
I noticed some time in the previous betas that the indentation level of the added code seem to be fixed to the first level whenever using some autocompletes. So actions like implementing an interface… (View Post) -
Re: How to convert string to int for SQL?
Many of the methods you'd typically use in the Convert class can be converted to corresponding sql function calls. So you would use `Convert.ToInt32` or other conversion functions. You can also map o… (View Post)