Пример #1
0
 private void detach_ewords(ewords entity)
 {
     this.SendPropertyChanging();
     entity.parts = null;
 }
Пример #2
0
 private void attach_ewords(ewords entity)
 {
     this.SendPropertyChanging();
     entity.parts = this;
 }
Пример #3
0
 partial void Deleteewords(ewords instance);
Пример #4
0
 partial void Updateewords(ewords instance);
Пример #5
0
 partial void Insertewords(ewords instance);
Пример #6
0
        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);
        }