up vote 22 down vote favorite
2
share [g+] share [fb]

I added a new ADO.Net Entity Data Model into my project and used the Update Wizard to add tables into the model. Five of the selected tables were added to the design surface. Two other tables will not add. I select them in the wizard and click Finish, yet they never show up on the design surface.

Is this a bug, or are there some situations where a table cannot be added to the model (by design)?


UPDATE: The XML (*.edmx) reveals the problem.

<!--Errors Found During Generation:
warning 6013: The table/view 'FooBar.dbo.Roles' does not 
have a primary key defined and no valid primary key could be inferred. 
This table/view has been excluded. To use the entity you will need to 
review your schema, add the correct keys and uncomment it.-->
<!--<EntityType Name="Roles">
    <Property Name="role_id" Type="decimal" />
    <Property Name="role_desc" Type="nvarchar" MaxLength="30" />
</EntityType>-->

Thanks Craig for your response.

link|improve this question

3  
This should have WAY more vote ups. I had no idea Visual Studio couldn't add the table since the .edmx file is the only place the error actually goes. Hopefully they'll have a dialog box in v2! – JohnBubriski Mar 10 '09 at 20:04
feedback

4 Answers

up vote 12 down vote accepted

The design surface is different from the entity model. It is possible to have a table in the mapping in your EDMX which does not appear on the design surface. View the file as XML to see if this is the case. In this case, the Update Wizard will not allow you to re-add the tables, since they are already part of the entity model. So, generally speaking, the Update Wizard knows more about your entity model than it does about the design surface, per se.

I don't think that's exactly the situation you're in, but it should give you the general idea for the solution: go into the XML and look for references to the tables in question.

link|improve this answer
feedback

My solution to this is to delete the entire model and readd it including the new tables that I want.

I accidentally deleted a table in the designer once and could not readd it. Hence removing entire model and readding it.

I had some issues with this as well (http://stackoverflow.com/questions/774645/ado-net-entity-data-model-not-updating-correctly/774737#774737)

link|improve this answer
feedback

Set Primary Keys to all tables or just one unchecked check-box "Allow null" to any column of each table. It works for me :)

link|improve this answer
feedback

I ran into a similar issue. For me the answer was provided by Parvinder. Though I also appreciated the hint to look at the design as xml. The table I want to import is a junk table that is acting as a data store {it was imported from an excel document}. I need to turn that junk into real data which is the reason I need it in code. Being a mess, that table does not have a primary key. Adding a primary key to the table resolves the issue.

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.