-1

誰かがデータを挿入する方法を教えてもらえますか

Table Student has columns {stuId Name Age}
Table School has columns {classId Year sName}

" sName"はStudentTableからの参照キーです

エンティティモデルC#を使用してデータを挿入したい

4

2 に答える 2

0

これを試して学生を追加してください:

Student student = new Student(){studId="", Name="", Age=""};
myEntities.Students.AddObject(student);
myEntities.SaveChanges();

学校の追加:

School school = new School(){classId="", Year = year, sName=""};
myEntities.Schools.AddObject(school);
myEntities.SaveChanges();

これがお役に立てば幸いです。

于 2013-03-26T14:30:45.010 に答える
0
                String SchooID = getNewID();
                Schools schl = new Schools();
                schl.school_reference = SchooID;
                schl.school_name = "Ananda Collage";

                schl.StudentReference.Value = cecbContext.Students.First(i => i.stud_name == "Josh");


                cecbContext.AddToSchools(schl);
                cecbContext.SaveChanges();

私はこのようにして答えを見つけました。これは私にうまくいきました。助けてくれてありがとう

于 2013-03-27T01:31:20.963 に答える