vote up 0 vote down star

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?

flag

25% accept rate
What ORM are you using? – Daniel A. White Nov 5 at 19:12
I am using ASP.NET and c# – unknown (google) Nov 5 at 19:47

1 Answer

vote up 0 vote down

Your best bet is to set up and configure an ORM (Object-relational mapping), such as NHibernate, that will manage this for you. In effect, you set up the data model, and the ORM framework will take care of persisting that information for you.

link|flag

Your Answer

Get an OpenID
or

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