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.
Use their synchronous counterpart, i.e., Add
and AddRange
.
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.
Use their synchronous counterpart, i.e., Add
and AddRange
.