private void detach_ewords(ewords entity) { this.SendPropertyChanging(); entity.parts = null; }
private void attach_ewords(ewords entity) { this.SendPropertyChanging(); entity.parts = this; }
partial void Deleteewords(ewords instance);
partial void Updateewords(ewords instance);
partial void Insertewords(ewords instance);
static void _DBInsertSentences(DataClassesDataContext db, ExampleSentence es, ewords word) { sentences insertone = new sentences { eword_id = word.eword_id, sentence = es.Sentence, chinese = es.Chinese }; db.sentences.InsertOnSubmit(insertone); }