Is there an add-in for the VSIDE that allows you to visually construct ASP.NET MVC solutions? Back in my struts days there were a number of options that made hooking together Views/Models/Controllers easy and interactive.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is tooling support in MVC tools for VS 2008/2010 which helps in performing common tasks, such as
Add Area,
Add Controller,
Add View,
Go To View,
etc
…
they all use current context when creating artifacts. For example, when you are using “Add View” you can choose to create strongly typed view and perform operation you want (CRUD) over Model data passed to it.
Not 100% visual in a way that you can draw diagram of controllers, views and models and hook them together.
Not sure if this answers your question but if you are familiar with the tools, it will probably be helpful to others.