Click here to Skip to main content
15,891,657 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a table named Courses,CoursePreRequisites and a third tale named PreRequisiteTracking.One particular Course can contain multiple PreRequisites and so I couldn't pass a foreign key in the Courses tables and instead created the PreRequisiteTracking table.

Eg:A Course,say, Introduction to Java.This may have the following prerequsites:OOPS,Basic Programming Knowledge.
These prerequisites are given in checkboxes while creating a new course.
Now my problem is how do I join all these tables and list them in a View.
I joined all theses tables but since only Ids are being passed I am not able to retrieve the PreRequisites to show in the View.

Kindly help me,Thanks in advance
Posted
Comments
Zoltán Zörgő 15-Oct-12 7:02am    
You can not join tables in a view. It his not the view's concern. It is the model's or the controller's concern. If you can get the list you want as sql query or linq query, you can pass the collection to the view. Please post your code here!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900