I have 3 related tables:
Lesson (Id (PK), Name)
LessonQuestion (Id (PK), LessonId (FK), Title)
LessonQuestionAnswer (Id (PK), LessonQuestionId (FK), Value)
My Model:
public class Lesson : Entity
{
public virtual String Name { get; set; }...
asked by
15.06.2018 / 16:02