Ok multiple questions here:
I am trying to understand what is the difference (outside the obvious
asynchronous) between AddAsync()
and Add()
methods in EF Core?
When do you choose one over the other?
Does it matter if you choose one over the other for consistency?
After going through the code I agree with Henk Holterman's comment that using Add()
when your code is async is an optimization. The documentation for AddAsync()
is a little misleading when it says, "For all other cases the non async method should be used".
I am trying to understand what is the difference (outside the obvious asynchronous) between
AddAsync()
andAdd()
methods in EF Core?
AddAsync()
is 100% async safe, while Add()
is only async safe in certain conditions. Like the comment implies, one of your columns may be configured such that Entity Framework makes a query to the database to generate the value that will eventually be inserted. In that case, blocking would occur if you called Add()
.
When do you choose one over the other?
Add()
.AddAsync()
just as you would for other methods.Add()
will never make a database query, then use Add()
.Does it matter if you choose one over the other for consistency?
No, despite the recommendation in the AddAsync()
documentation.