Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 405 Bytes

PH_P013.md

File metadata and controls

9 lines (5 loc) · 405 Bytes

PH_P013 - Discouraged EntityFramework Method

Problem

The use of the AddAsync and AddRangeAsync of DbContext and DbSet should not be used stated in the API documentation. For example, see DbSet.AddAsync.

Solution

Use their synchronous counterpart, i.e., Add and AddRange.