I am looking for a article which describes how to construct a 1 to many relationship in asp.net mvc 3. My though is to use partial views but how can I loop through them? How do i setup my page ie master detail?
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.
Controllers, Views and PartialViews already encumber a one-to-many relationship style.
One view (or partial view) can be returned by many controllers. Many partial views can be rendered by a single View etc etc.
What specific problem are you aiming to solve?