I have a domain model in my head, and i am having problems building a SubSonic compatible db schema, it would realy help me get started if you could tell me how you would go at it for this example with 3 entities (could be SqlServer OR MySql doesn't matter to me)
Subject- representing an educational subject (e.g. Trigonometry, Calculus). Props- Name
Technique- representing a technique used to solve an exercise (e.g. Law of cosines, Pythagorean theorem) Props- Name, FatherSubject
Exercise- representing a certain question. Props- Subjects, Techniques (only those used to solve the exercise), DifficultyLevel (enum- easy, meduim, hard), Answer (int).
So: Many to Many- Exercise -> Subject, Exercise -> Technique One to Many- Subject -> Technique. And DifficultyLevel is an enum.
I'll be sure to contribute to the docs once i'll start to get the hang of it.