Esempio n. 1
0
 private void DeleteVideoSentences(StudyLanguageContext c, long videoId)
 {
     const string SQL_COMMAND = "delete from VideoSentence where VideoId={0}";
     int          count       = c.Database.ExecuteSqlCommand(SQL_COMMAND,
                                                             new object[] {
         videoId
     });
 }