public async Task <bool> SaveChangesAsync() { if (await _context.SaveChangesAsync() > 0) { return(true); } return(false); }
public async Task <bool> SaveChangeAsync() { return((await _context.SaveChangesAsync()) > 0); }
public async Task <bool> SaveChangesAsync() { return((await _context.SaveChangesAsync()) > 0); // se o save for masi que 0 retorna true or false }