Home

LinqPad6 bug with using backtick to select multiple items

Suppose I have a table called Customer and start a query

(from c in Customer select new { c.

At these stage the intellisense displays a list of columns to select.
If I select the first column (Code) and press the backtick, the query should become

(from c in Customer select new { c.Code, c.

but instead becomes

(from c in Customer select new { c.Code, new { c.}

If I delete back to

(from c in Customer select new { c.Code,

then it behaves even weirder, but if I delete back to

(from c in Customer select new {

it behaves correctly.


Thanks.

Comments

Sign In or Register to comment.