Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a three database tables related for example: company( one - one) Contact( one- one) Address,

I need to create a company, then create contact for company, then create an address for contact in one page (to make things easier for user).

the user doenst have to fill all the details at once and submit it, he may create company today, then add contact tomorrow and then after tomorrow edit the company details and etc..the actions are randoms by the users...

there are many ways, but what is the best way to achieve this using ASP.NET MVC??

thanks

share|improve this question
This is entirely too subjective. – Sailing Judo Jul 26 '10 at 23:51

1 Answer

up vote 0 down vote accepted

IMHO, the best way would be to have a PartialView for each table and for the View to have a form view model that has each table object as a property

FormViewModel
    Company company {get;set;}
    Contact contact {get;set;}
    address address {get;set;}

You would return the above model to the view in the controller return View(FormViewModel);

Then when you render each partial you pass in the appropriate model.

Html.RenderPartial("ContactEntry", Model.contact);

When you submit the form you then do a TryUpdateModel to grab the values and begin saving to your data layer.

EDIT In response to Robert

Sam, you'd also need to ensure that either fields are enabled / disabled as data is filled in. For example you can't have a contact w/out a company first.

You could, if you got fired up enough, check for data as it's filled in. So as the user completes the form you activate fields w/out saving first. You can do this with jQuery and even client side validators that you can write in MVC.

share|improve this answer
The workflow ought to be a little more defined than this. Otherwise it just becomes Your Company's App. – Robert Harvey Jul 27 '10 at 0:05
enabled / disabled as data is filled in<- thanks for the tip. – Bart Jul 27 '10 at 0:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.