Closed blundell89 closed 2 years ago
The EF docs recommend using the non async DbContext<TEntity>.Add method when adding entities (except for special cases). This PR switches from the async method to the sync one.
DbContext<TEntity>.Add
I've come across this before and it really screams bad API design from the EF. 😔
The EF docs recommend using the non async
DbContext<TEntity>.Add
method when adding entities (except for special cases). This PR switches from the async method to the sync one.