I have an Entity Framework 4 model-first design. I create a first draft of my model in the designer and all was well. I compiled, generated database, etc.

Later on I tried to add a string scalar (Nullable = true) to one of my existing entities and I keep getting this type of error when I compile:

Error 3004: Problem in mapping fragments starting at line 569: No mapping specified for properties MyEntity.MyValue in Set MyEntities. An Entity with Key (PK) will not round-trip when: Entity is type [MyEntities.MyEntity]

I keep having to manually open the EDMX file and correct the XML whenever I add scalars.

Ideas on what's going on?

link|improve this question

67% accept rate
What, exactly, are you correcting? – Craig Stuntz Jun 9 '10 at 12:45
I was manually editing the entity type and set mappings. – Jason Morse Jun 9 '10 at 22:06
feedback

3 Answers

up vote 17 down vote accepted

Have since discovered that after I add/change/delete properties on my entities I must "Generate Database from Model" before I compile otherwise I get 3004 mapping errors.

link|improve this answer
1  
This is ridiculous! I'm creating my model FROM the database, not the other way around. I'm beginning to find EF quite buggy... :( – TigerShark Jan 17 '11 at 20:37
1  
I've noticed that when I delete properties the updated version of the model still contains the old fields. I have to manually delete the fields. Adding this bit of info in case it helps anyone. – Casey Margell Apr 4 '11 at 23:33
I am getting this error, and it seems exactly as if the database isn't in sync with the model. However I am using Code First, and cannot "Generate Database From Model". I have it set up to DropCreateDatabaseIfModelChanges, which for some reason isn't working with this additional property :/ – elwyn Apr 9 '11 at 4:00
if you are starting with a database and don't want to use VS to generate the database from code, rather than "Generate", try "Update model from database..." – moonlightcheese Jan 23 at 19:20
Yeah, why am I bothering with EF, never had these kind of problems with linq2sql – Chris Barry May 16 at 23:35
feedback

I just removed the offending tables from the model and then added them back and all was well.

link|improve this answer
feedback

If all your queries are written in stored procedures and you are just trying to fill the model then you could switch to a complex type which worked for me.

How to create a complex type:

  1. Manually change the name of the Entity Generated class you are having issues with to a name not already in use in your edmx file.
  2. Select the Model Browser window and right-click/add a new complex type.
  3. Copy/Paste the properties of the original model to the complex type.
  4. Map your stored procedures to the complex type.

    I hope this helps someone.

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.