You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Services/Ordering/Ordering.Infrastructure/Repositories/BuyerRepository.cs
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,6 @@ public class BuyerRepository
11
11
:IBuyerRepository
12
12
{
13
13
privatereadonlyOrderingContext_context;
14
-
15
14
publicIUnitOfWorkUnitOfWork
16
15
{
17
16
get
@@ -29,16 +28,14 @@ public Buyer Add(Buyer buyer)
29
28
{
30
29
if(buyer.IsTransient())
31
30
{
32
-
//TODO: when migrating to ef core 1.1.1 change Add by AddAsync-. A bug in ef core 1.1.0 does not allow to do it https://github.com/aspnet/EntityFramework/issues/7298
0 commit comments