I build a project in C# with Visual studio 2010. I work with MVC model, (model-view-control) and I created 3 diffrent projects (one for each layer) . Now I try to reference each layer to other. so I added: 1. reference of the view in the control. 2. reference of the model in the control.
but now I need to add reference of the Control in the View, and I get an error about circular dependency.
how can I solve it?