We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 582bb24 commit 273cb2bCopy full SHA for 273cb2b
src/JsonApiDotNetCore/Data/DefaultEntityRepository.cs
@@ -376,7 +376,7 @@ public virtual async Task<bool> DeleteAsync(TId id)
376
var entity = await GetAsync(id);
377
if (entity == null) return false;
378
_dbSet.Remove(entity);
379
- await _context.SaveChangesAsync();
+ await _context.SaveChangesAsync();
380
return true;
381
}
382
0 commit comments