vote up -1 vote down star

hi , i got Two Table named Personel and Departmant..

Personel Table ; PERSONELID int , PK not null NAME varchar SURNAME varchar DepartmanID integer

Departman Table ; DepartmanID int , PK not null DEPARTMANNAME varchar

(ONE TO MANY Relation)

i wanna association between this tables. but i cant do it. with EDMX Model Designer .. gettin errors ;

Association END KEY property PERSONELID is not mapped. Association END KEY property NAME is not mapped. blabla ....

too new at this framework , Is there any easy way of do this job in the Entity Framework , ?

i am using Firebird 2.1 DB . and Firebird.Client.Data 2.5.0.0. for provider.

flag

67% accept rate
1  
Probably not a one-to-one relationship unless each department has only one person, probably n-to-1 – automatic Aug 2 at 10:58

1 Answer

vote up 1 vote down

For a one-to-one relationship to work each table must have the same primary (unique) key.

In your case you probably have a one to many relationship:

One department can have many persons.

link|flag
ok one to one , one to many , its not important cuz i cant do association thing in Entity Framework .. is there any tutorial about this ? – Ibrahim AKGUN Aug 2 at 12:36
2  
These relations are important because they're captured by the entity framework from the schema. – Greg D Aug 2 at 12:39
Are these relationships spesified in your database? Are the primary keys and foreign keys spesified? If all of these are in place EF should generate the model for you. – Shiraz Bhaiji Aug 2 at 12:47
yes but its not generate them for me. using Firebird db. – Ibrahim AKGUN Aug 2 at 16:05
Have you installed the Firebird extensions for Visual Studio? – Shiraz Bhaiji Aug 2 at 16:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.