/// <summary>
 /// Create a new Question object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="questionText">Initial value of the QuestionText property.</param>
 public static Question CreateQuestion(global::System.Int32 id, global::System.String questionText)
 {
     Question question = new Question();
     question.Id = id;
     question.QuestionText = questionText;
     return question;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Questions EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToQuestions(Question question)
 {
     base.AddObject("Questions", question);
 }