ChairmanMawh

Results 5 issues of ChairmanMawh

Some JSON i pasted recently generated this: | Screenshot from browser | |-| | ![image](https://github.com/glideapps/quicktype/assets/118385137/1d4b724f-fb69-4b05-b776-415a322dda16) | I'm using STJ but `JsonToken` belongs to NewtonSoft. I believe the equivalent is `JsonTokenType`...

bug
C#

**What problem are you trying to solve?** I want to go to my log of what SQL EFC has generated and copy it, paste it into SSMS and run it...

type-enhancement
needs-design
customer-reported
area-logging

Just wondering.. I'd like to be able to flag variables, fields and properties in the codebase that have a singular name. Also variables that are sole objects but have a...

Consider: var x = myEfDbContext.MyTable.First().Id Fixing the 02 on First() generates: var x = await myEfDbContext.MyTable.FirstAsync().Id When it would ideally be: var x = (await myEfDbContext.MyTable.FirstAsync()).Id

Consider this: ``` Assert.AreEqual(1, dbContext.Person.Count()); ``` AF raises 02 for this and suggests CountAsync(), but asking VS to make the change results in: ``` await Assert.AreEqualAsync(1, dbContext.Person.Count()); ``` rather than...