我创建了一个mssql数据库,然后使用these instructions创建了数据模型。我注意到一些奇怪的东西,这也是我不能在没有混淆的情况下使用模型的东西。
我的一个目标是Book。 Book包含id,name,isbn,..以及对Person表的引用,如作者,编辑和发布者。
创建的模型包含
string name;
int id;
string isbn;
int authorid;
int editorid;
int publisherid;
person person1;
person person2;
person person3;
有没有办法在创作时更改这些人的姓名?因为否则很难弄清楚哪个人是谁,我将不得不手动改变。