I'm using the Entities Framework for the first time. I have a strange problem: I have this small database on SQL-server. Here is the diagram from the management studio: enter image description here

As you can see, the foreign keys are all defined. To generate the edmx model, I selected "New Item -> ADO.NET Entity Data Model -> Generate from database". This is what I get: enter image description here

All associations but two are missing! This is odd since the good old L2S could recognize them with no problem: enter image description here

Can anybody help me fix it?

link|improve this question
With all the time and effort you are going to spend fighting with this tool and trying to figure it out, you could have written your own stored procedures and ADO.Net code and optimized your database performance. If it's this hard for such a simple database, imagine what it will be like in a more complex scenario. – DOK Nov 11 '11 at 15:36
Well, I have never used the Entities Framework before so I thought I'm just missing something. Are you telling me that it is really that bad even for simplest things like this? – AlefSin Nov 11 '11 at 15:48
I think it's good to experiment with new technology. But I am reminded of this recent tweet by Jeff Atwood: we have a rule at #stackexchange, everyone who says the words "Entity Framework" has to put $1 in the swear jar. which has been retweeted 100 times so far. – DOK Nov 11 '11 at 16:58
feedback

1 Answer

Are you checking the option of "Include foreign key columns in the model"?

EF Entity Data Model Wizard Screenshot

link|improve this answer
Sorry I got back to you late. Yes, I did do that. As you see I only got two of the associations, not all. – AlefSin Nov 12 '11 at 8:51
1  
Could you generate the DDL for these tables and post? – amit_g Nov 13 '11 at 3:13
feedback

Your Answer

 
or
required, but never shown

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