我想在我的SQL表中插入一条新记录。我试过:publicvoidCreateComment(intquestionId,stringcomment){QuestionCommentquestionComment=context.TableName.Create();//1*questionComment.propertyThatIsNotAConstraint=questionId;questionComment.body=comment;context.QuestionComments.Add(questionComment);context.SaveChanges();//ERRO