Keith Adler
Keith Adler

Reputation: 21178

Visual ASP.NET MVC Designer

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.

Upvotes: 2

Views: 603

Answers (1)

Dragan Panjkov
Dragan Panjkov

Reputation: 4332

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.

Upvotes: 1

Related Questions