Future<int> deleteById(int employeeId) async { return await (db.delete( db.employee, )..where((e) => e.id.equals(employeeId))).go(); }