Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
enisgurkann authored Feb 28, 2022
1 parent edde7ba commit af44c5e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ PM> Standart FirstOrDefault

var customer = await _context
.Customers
.AsNoTracking()
.Where(x => x.Name == 'Enis' && x.Surname == 'Gürkan')
.FirstOrDefaultkAsync();

Expand All @@ -47,7 +46,6 @@ PM> Using ToFirstOrDefaultWithNoLockAsync

var customer = await _context
.Customers
.AsNoTracking()
.Where(x => x.Name == 'Enis' && x.Surname == 'Gürkan')
.ToFirstOrDefaultWithNoLockAsync();

Expand Down

0 comments on commit af44c5e

Please sign in to comment.