up vote 0 down vote favorite
1
share [g+] share [fb]

Hi i have got 2 table.In first table i got a Foreign Key link to second table's primary key.

(second)Personel and (first)Istbl are my tables.

In personel table i got PersonelID , PersonelName,PersonelSurname.

In Istbl table i got IsID,PersonelID,xx,xx,xx, going like this.

I cant see PersonelID in EF Model Viewer also i cant see it in code screen.

is there any example for me ?

link|improve this question

67% accept rate
feedback

3 Answers

up vote 2 down vote accepted

EF v1 hides foreign keys because it views them as persistence artifacts not important to the domain model. See here for a discussion.

EF v2, shipping with .NET 4, will include much better support for foreign keys in the model.

link|improve this answer
feedback

Are you refreshing your datamodel? Have you created the model from the database, if so, try recreating it, if you have updated your database model.

link|improve this answer
i can see it from second table Personel if i create new Personel Class but i cant see it in Istbl Class.I wanna give it a value while inserting data but intellisense is showing me Personel class not PersonelID property.So i cant add a value for it and my application giving me error – Ozlem Balli Feb 27 '09 at 18:29
feedback

You can get foreign key value with something like this object foreignKey = istblObject.PersonelReference.EntityKey.EntityKeyValues[0].Value;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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