Background: i have a 1 to 0..1 relationship between User and UserSettings.

The important part of the model is as follows:

public class User
{
   public int UserId { get; set; }
   public string Name { get; set; }
   public UserSettings Settings { get; set; }
}

public class UserSettings
{
   public int UserId { get; set; } // PK/FK
   public sting SpecialField { get; set; }
}

When i do an INSERT:

var user = new User { Settings = new UserSettings { SpecialField = "Foo" }};
ctx.Users.Add(user);
ctx.SaveChanges();

Everything is cool, when i check the trace, User is added first, then the UserSettings - as you would expect, since UserSettings needs the IDENTITY from User.

But when i UPDATE that "SpecialField":

var user = ctx.Users.Include("Settings").Single();
user.Name = "Joe";
user.Settings.SpecialField = "Bar";
ctx.SaveChanges();

I see that the trace shows EF updating the UserSettings first, then the User.

Why?

This is important for me, because i have trigger logic that needs to execute only when SpecialField is changed, and it needs to reference data on User.

Can anyone explain this behaviour? Is there a workaround (other than a hack - which would involve me manually "touching" special field again, which is really bad).

link|improve this question

A workaround that comes to mind would be adding a call to SaveChanges() after changing user.Name. And a sidenote: if you are using EF 4.1 (according to the tag), it's better to use Include(u => u.Settings) instead of the string-based version. – Yakimych Jun 25 '11 at 15:55
@Yaki - so your saying do SaveChanges twice? And yes - im using lambda include, this is just an example – RPM1984 Jun 26 '11 at 0:53
@RPM1984 - yes twice. And it doesn't seem to be such a bad idea. You will have two SQL commands executed anyways. – Yakimych Jun 26 '11 at 14:36
@Yakimych - yeah i guess. This was basically what i was doing to do as a last resort. So this behaviour im seeing is not standard? E.g i've done something wrong? – RPM1984 Jun 26 '11 at 23:33
@RPM1984 - I don't think you are doing anything wrong. Why do you expect the tables to be updated in the particular order you want? Any particular reason? – Yakimych Jun 28 '11 at 2:19
show 6 more comments
feedback

2 Answers

Sorry, But I have tried your model in my PC. And All happened very well. User update first (Parent), then UserSetting (Child).

I think, It might be something wrong with your model setting or database setting, but I don't know what.

link|improve this answer
feedback
up vote 1 down vote accepted

Ended up "touching" the field again as a workaround.

Damn you EF.

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.