We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Assert.AreEqual(1, await dbContext.Person.CountAsync());
Consider this:
AF raises 02 for this and suggests CountAsync(), but asking VS to make the change results in:
rather than