Differences between a framework and a pattern
Differences between a framework and a pattern, what help can a pattern provide for architectural work?
“In many projects, this is a subject of misunderstanding, because everyone thinks it is so obvious. So this blog will fix this I hope”.
What distinguishes a framework from a pattern?
A framework like .NET is a specific set of components that handle the execution of programs specifically for the .NET framework. It does not solve your problem, you have to fix it yourself that's missing. A pattern helps you understand a problem and the solution to the problem. The solution can include a specific framework that helps solve a problem.
What help can patterns give to architectural work?
A pattern helps you understand a problem and the solution to the problem in architectural work. You can reuse code that solves a specific problem. Patterns also help to describe how to solve a problem and how to do it which helps to describe different scenarios in architectural work.
Crystal clear?