Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

An error occurred while saving entities that do not expose foreign key properties for their relationships

I have a simply code in Entity Framework 4.1 code first:

PasmISOContext db = new PasmISOContext(); var user = new User(); user.CreationDate = DateTime.Now; user.LastActivityDate = DateTime.Now; user.LastLoginDate = DateTime.Now; db.Users.Add(user);  db.SaveChanges(); user.Avatar = new Avatar() { Link = new Uri("http://myUrl/%2E%2E/%2E%2E") }; db.SaveChanges();   db.Users.Add(new User() { Avatar = new Avatar() { Link = new Uri("http://myUrl/%2E%2E/%2E%2E") } }); db.SaveChanges(); 

The problem is that I get an error

An error occurred while saving entities that do not expose foreign key properties for their relationships. The EntityEntries property will return null because a single entity cannot be identified as the source of the exception. Handling of exceptions while saving can be made easier by exposing foreign key properties in your entity types. See the InnerException for details.

at

db.Users.Add(new User() { Avatar = new Avatar() { Link = new Uri("http://myUrl/%2E%2E/%2E%2E") } }); db.SaveChanges(); 

I don't understand why the similar operation works. Is there something wrong with my model, or with ef-code-first?

public class Avatar {     [Key]     public int Id { get; set; }      [Required]     public string LinkInString { get; set; }      [NotMapped]     public Uri Link     {         get { return new Uri(LinkInString); }         set { LinkInString = value.AbsoluteUri; }     } }  public class User {     [Key]     public int Id { get; set; }     public string UserName { get; set; }     public string Email { get; set; }     public string Password { get; set; }     public Avatar Avatar { get; set; }     public virtual ICollection<Question> Questions { get; set; }     public virtual ICollection<Achievement> Achievements { get; set; }      public DateTime CreationDate { get; set; }     public DateTime LastLoginDate { get; set; }     public DateTime LastActivityDate { get; set; } } 
like image 352
user278618 Avatar asked Oct 29 '11 10:10

user278618


2 Answers

For those of you who would still have this error with all keys properly defined, have a look at your entities and make sure you don't leave a datetime field with a null value.

like image 99
Baral Avatar answered Sep 18 '22 16:09

Baral


This error message can be thrown for any kind of reason. The 'InnerException' property (or its InnerException, or the InnerException of that, etc) contains the actual primary cause of the problem.

It would of course be useful to know something about where the problem occurred - which object(s) in the unit of work is causing the problem? The exception message would normally tell you in the 'EntityEntries' property, but in this case, for some reason, that can't be done. This diagnostic complication - of the 'EntityEntries' property being empty - is apparently because some Entities 'do not expose foreign key properties for their relationships.'

Even if the OP gets the error because of failing to initialize DateTimes for the second instance of User, they get the diagnostic complication - 'EntityEntries' being empty, and a confusing top-level message ... because one of their Entity's doesn't 'expose foreign key properties'. To fix this, Avatar should have a public virtual ICollection<User> Users { get; set; } property defined.

like image 22
David Bullock Avatar answered Sep 18 '22 16:09

David Bullock