Constructive dismissal can occur even where an employee has not been formally fired.
In Ontario, the issue is whether the employer has made a significant unilateral change to the employment relationship or engaged in conduct showing that it no longer intends to be bound by the employment contract. The change must be serious enough that the employee can treat the employment relationship as having been terminated.
Employers can make reasonable operational changes in many circumstances. The legal question is whether the change fundamentally alters the terms of employment or makes continued employment unreasonable.
Employees should obtain legal advice before resigning, accepting the change or threatening a constructive dismissal claim.
1. Significant Pay Cut
A substantial reduction in salary, hourly wages, commission, bonus opportunity or overall compensation may support a constructive dismissal claim.
Compensation is a core term of employment. An employer usually cannot impose a major pay cut without the employee’s agreement or a clear contractual right to do so.
The size of the reduction matters. A minor or temporary adjustment may not be enough. A meaningful reduction to total compensation should be reviewed before the employee accepts it.
2. Demotion or Loss of Status in Ontario
A demotion may amount to constructive dismissal where it reduces the employee’s authority, title, reporting level, responsibilities, or status within the organization.
The issue is not only pay. A demotion can affect reputation, career progression, decision-making authority, and future earning potential.
A change from a senior role to a lower-level role, or the removal of managerial responsibilities, should be assessed carefully.
3. Major Change in Duties
Employers may adjust duties from time to time. However, a fundamental change to the nature of the role can raise constructive dismissal concerns.
Examples may include removing the employee’s core responsibilities, transferring key functions to another employee, stripping the employee of client relationships or assigning work that is materially different from the position the employee accepted.
The stronger the connection between the removed duties and the employee’s role, status and compensation, the more significant the issue becomes.
4. Forced Relocation in Ontario
A forced relocation may raise constructive dismissal concerns where the new location creates a substantially longer commute, disrupts family obligations, changes the nature of the job or makes continued employment impractical.
Some employment contracts give employers flexibility to change work locations. Even then, the employer’s exercise of that right may need to be reasonable and consistent with the employment relationship. Employees should not assume that every relocation is lawful or unlawful and should first obtain independent legal advice.
5. Reduced Hours or Shifts in Ontario
A sudden reduction in hours, shifts, or scheduled work can materially affect income and job security.
This issue commonly arises for hourly employees, retail workers, hospitality employees, and employees whose earnings depend on scheduled shifts. A move from full-time to part-time work may also be significant.
If reduced hours meaningfully lower compensation or alter the employment relationship, the employee should seek advice before accepting the new schedule.
6. Failure to Pay Compensation Owing
Failure to pay wages, commissions, bonus amounts, vacation pay or other earned compensation can support a legal claim.
A single payroll error may not amount to constructive dismissal if corrected promptly. However, repeated non-payment, refusal to pay earned compensation or a significant failure to meet compensation obligations may be serious.
Employees should document what is owed, preserve pay records and avoid delaying too long before objecting.
7. Improper Suspension in Ontario
A suspension can be a serious employment action, even where the employee remains technically employed.
An unpaid suspension, indefinite suspension, disciplinary suspension without proper basis, or suspension that damages the employee’s reputation may support a constructive dismissal claim. Even a paid suspension can raise concerns depending on the contract, workplace context, duration and reason for the suspension.
8. Toxic or Poisoned Work Environment
Constructive dismissal may arise where the employer permits serious harassment, discrimination, bullying, threats or repeated mistreatment to continue.
A difficult workplace is not automatically constructive dismissal. The legal concern is whether the conduct, viewed objectively, makes continued employment unreasonable or shows that the employer is no longer meeting its obligations.
Where the facts involve harassment or discrimination, there may also be human rights issues in addition to constructive dismissal.
9. Pressure to Resign in Ontario
Some employees are not fired directly, but are pushed toward the exit.
This may include being told to resign, being excluded from important work, having duties removed, being isolated from colleagues, being subjected to repeated criticism without a fair basis or being presented with resignation as the only realistic option.
Pressure to resign should be documented carefully. Employees should not resign in the moment without advice, as resignation can complicate both employment-law and EI issues.
10. Reporting Structure Changes That Reduce Authority
A reporting change may appear administrative, but it can be significant where it reduces authority, status, or decision-making power.
For example, an employee may be placed under a former peer or subordinate, removed from leadership meetings, or stripped of direct reports. If the change materially alters the employee’s role, it may support a constructive dismissal argument.
The issue is not the reporting change alone. The issue is its real impact on the employment relationship.
Do Not Resign Without Legal Advice in Ontario
Constructive dismissal is fact-specific and risky.
If an employee resigns too quickly, the employer may argue that the employee quit voluntarily. If the employee stays too long without objection, the employer may argue that the employee accepted the change.
The safest approach is to document the change, preserve written communications, avoid emotional responses, and obtain legal advice before deciding whether to object, negotiate, continue working, or treat the employment relationship as terminated.
Speak With a Toronto Employment Lawyer
Lecker & Associates advises employees across Ontario on constructive dismissal claims, wrongful dismissal disputes, demotions, pay cuts, forced relocations, toxic workplace issues, and severance negotiations. If your employer has significantly changed your pay, duties, hours, reporting structure, work location, or workplace conditions, early legal review can help determine whether the change amounts to constructive dismissal and how to respond without weakening your position. Our team of Toronto employment lawyers can be reached at 416-223-5391 or intake@leckerslaw.com for a confidential consultation.
How Lecker & Associates Can Help
Lecker & Associates advises employees across Ontario on termination packages, wrongful dismissal claims, fixed-term contract disputes, and severance negotiations. If your fixed-term contract ended before the agreed end date, early legal review can help determine whether the employer had the right to end the contract, whether the termination clause is enforceable, and whether the offer reflects the full value of the remaining term. Our team of Toronto employment lawyers can be reached at 416-223-5391 or intake@leckerslaw.com for a confidential consultation.

10 Examples of Constructive Dismissal in Ontario
Examples may include a significant pay cut, demotion, major change in duties, forced relocation, reduced hours, unpaid compensation, improper suspension, toxic workplace conditions, pressure to resign, or reporting changes that reduce authority. The key issue is whether the employer fundamentally changed the employment relationship.
Not without legal advice. Resigning too quickly can create risk. Remaining in the role too long without objection can also create risk. An employment lawyer can help assess whether to object in writing, negotiate, continue working, or treat the employment relationship as terminated.
Possibly, but it is not automatic. Service Canada will assess whether you had just cause to leave and whether leaving was the only reasonable alternative in the circumstances. Employees should document the workplace change and obtain advice before resigning.
A successful constructive dismissal claim usually requires evidence of a serious unilateral change to the employment relationship or employer conduct showing that the employer no longer intended to be bound by the contract. Useful evidence may include emails, letters, pay records, schedules, job descriptions, performance reviews, organizational charts, medical documentation, complaints, and notes from meetings.
//script
function toggleFaqs(blockId, buttonId) {
var hiddenFaqs = document.querySelectorAll(‘#’ + blockId + ‘ .hidden-faq’);
var button = document.getElementById(buttonId);
// Toggle visibility of hidden FAQs
hiddenFaqs.forEach(function (faq) {
faq.style.display = faq.style.display === ‘block’ ? ‘none’ : ‘block’;
});
// Update button text and add/remove class based on current visibility
var isHidden = hiddenFaqs[0].style.display === ‘none’;
if (isHidden) {
button.innerText = ‘SHOW MORE’;
button.classList.remove(‘show-less-active’); // Remove the class when showing “SHOW MORE”
} else {
button.innerText = ‘SHOW LESS’;
button.classList.add(‘show-less-active’); // Add the class when showing “SHOW LESS”
}
}
document.addEventListener(‘DOMContentLoaded’, function () {
var accordions = document.querySelectorAll(‘.accordion’);
accordions.forEach(function (accordion) {
var accordionButtons = accordion.querySelectorAll(‘.accordion-button’);
accordionButtons.forEach(function (button) {
button.addEventListener(‘click’, function () {
accordionButtons.forEach(function (btn) {
btn.classList.remove(‘show’);
});
button.classList.add(‘show’);
});
});
});
});
The post 10 Examples of Constructive Dismissal in Ontario first appeared on Lecker & Associates.