I want to create a custom collection and add my own custom Add method. Scenario:
Teacher.Students.Add(Student s)
I want to put LINQ methods to save the teacher/student relationship to the database, not just add it to the list.
How can I do that? How can I know what "Teacher" object this is?