Does the model and the controller share a 1to1 relatioship?

Hi Danny,

As far as I know if you're using scaffolding then yes, its 1 controller per model.

However if you are writing the controller code yourself there is no such limit, you can 'access' as many models as you want from as many (or as few) controllers as you want.

Generally speaking I try to keep related stuff in the same controller, rather than sticking to 1:1

HTH

Peter