Group: Forum Members
Posts: 448,
Visits: 12K
|
If I have a Course table and a Student table that are related by Student PK such as (Simplified):
Course1 table which has fields
PK
Course#
StudentPK
TestScore
QuizScore
DailyScore
and Student table has fields
PK
Name
I have a stored procedure that gets the following information using a parameter to get students in Algebra1:
course#,Name and TestScore
I want to put the the above info in a devexpress grid. I can get this far from the help I already got from the forum (I use a dummy table with the correct field names) put the info into a BO and then I use a BBS to attach it to the devgrid. But how does the test scores get back to the course table?
I have simplified the layout of the tables but if we can make this work then I can apply it too the project. TIA
|