Skip to content

Parentheses are not added if a chained sync call is converted #38

@ChairmanMawh

Description

@ChairmanMawh

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions