I am creating a Winforms MVC project called Cookies. Following guidelines from various searches, I have a solution with 4 separate projects: Cookies-Controller; Cookies-Model; Cookies-View and UseCookiesApplication (used as the starting stub with the program.cs file).
I got it all working with a "dummy" view with a simple listview control with hard-coded list items. However, I then wanted a "proper" view showing data from a SQL Database.
My problem is ... under which project should I generate the datasource to ensure that it is appropriately visible?
If I do so under the Cookies-Controller project then it is not visible when I go to a view in design mode. If I generate under Cookies-View then I get the error "...could not get type information for 'CookiesView.CookiesDataSet'".
I have successfully built Web-based MVC solutions, and standard winforms, but this has got me a tad confused.
Any help or pointers to other sites would be massively appreciated.
James
UPDATE: I have looked more deeply at MVP and can see it as viable alternative to Winforms MVC for what I need right now. So thanks again to #VirtualValentin and also #Jimi.
However, my original question still stands and, from a purely educational point of view, I would be grateful if someone who has developed a Winforms MVC Database application could enlighten me. James