I am using EF4 CTP 5, CodeFirst.

Please see my classes first:

public class Guest
{
        [Key]
        public Guid GuestID { get; set; }

        public Language PreferredLanguage { get; set; }
        public Guid? LanguageID { get; set; }
}

public class Language
{
        [Key]
        public Guid LanguageID { get; set; }

        [Required(ErrorMessage = "Enter language name")]
        [StringLength(50, ErrorMessage = "Language name is too long")]
        public string LanguageName { get; set; } // in origine language
}

My goal is to set a certain "Delete Rule" for the Guest-Language relationship. When a language is deleted, I do not want to delete the corresponding guests (so NO cascade delete). Instead I want the guest's LanguageID to be "Set NULL".

I was hoping for the fluent API to support me here. But I couldn't find anything helpful besides .WillCascadeOnDelete(bool), which does not provide the options I need. Did I miss anything? Or is this just not implemented in CTP 5?

Thanks for any help!

link|improve this question

71% accept rate
feedback

3 Answers

up vote 3 down vote accepted

What you are looking for can be achieved by setting up an optional association between Guest and Language entities:

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
    modelBuilder.Entity<Guest>()
                .HasOptional(p => p.PreferredLanguage)
                .WithMany()
                .HasForeignKey(p => p.LanguageID);
}

Unit Test:

using (var context = new Context())
{
    var language = new Language()
    {
        LanguageName = "en"
    };
    var guest = new Guest()
    {
        PreferredLanguage = language
    };
    context.Guests.Add(guest);
    context.SaveChanges();

    context.Languages.Remove(language);
    context.SaveChanges();
}

As a result, we'll end up having a guest record with a DB null value for the LanguageID FK column.


Update:

First let's see why the above Unit Test succeeded by looking into SQL Profiler. The below shows the trace right after calling the second SaveChanges() method:

enter image description here enter image description here

So as you can see, EF is smart enough to first update the guest record by setting its LanguageID to null and then submit a delete statement to remove the language record which is the default EF behavior when you set up an optional association. So it has been taken care of on the application side by EF and of course you'll get an error from the DBMS if you try to manually delete the language record inside the SQL Server like you also mentioned.

However, there is more to this story. Consider the following unit test:

using (var context = new Context())
{
    var language = new Language() { LanguageName = "en" };
    var guest = new Guest() { PreferredLanguage = language };
    context.Guests.Add(guest);
    context.SaveChanges();
}

using (var context = new Context())
{
    var language = context.Languages.First();        
    context.Languages.Remove(language);
    context.SaveChanges();
}     

This one fails with throwing a SQLException contains the exact message that you got from the SQL Server while trying to manually delete the record. The reason for that is because in the second unit test we do no have the related guest object loaded in the context so that EF is not aware of it and won't submit the necessary update statement like it did in the first example.

Back to your question, unfortunately EF Code First does not allow explicitly changing delete/update rule on relationships but we can always resort to SqlCommand method as you see an example of it in this post. In your case, we can code:

protected override void Seed(Context context)
{
    context.Database.SqlCommand("ALTER TABLE dbo.Guests DROP CONSTRAINT Guest_PreferredLanguage");
    context.Database.SqlCommand("ALTER TABLE dbo.Guests ADD CONSTRAINT Guest_PreferredLanguage FOREIGN KEY (LanguageID) REFERENCES dbo.Languages(LanguageID) ON UPDATE NO ACTION ON DELETE SET NULL");
}

Which is what you are looking for. With having the above seed method in place, the second unit test will also pass.

Hope this helps,
Morteza

link|improve this answer
Wow! Excxellent answer! I need to check out your blog! :-) – Mark Good Apr 3 '11 at 23:10
feedback

So, if I stick to Code First, I will end up with lots of SqlCommands as in your last snippet in order to set the relevant Delete and Update rules? This is too bad since I really liked the fluent API approach and its type safety.

Well, but who knows. Maybe Microsoft will add this feature in the future...

Anyway, your posts were a big help for me. I am sure I will hit some other questions soon, but this will be up to another thread.

Thanks again, Morteza! I really appreciate it.

link|improve this answer
No problem, please note that EF does not natively support this scenario which means you have to manually create them or use the SQLCommand that I showed here (which is not really different from manually creating them). – Morteza Manavi Feb 21 '11 at 23:17
feedback

and wow, it's you!!! I read all your blogs about associations and inheritance with EF Code First CTP5. Thanks so much for your your work...and of course for your help here too. I really appreciate it!

For your suggestions:

  1. Your code works great. And you know what? Because of your articles I had already tried setting up an optional association with the fluent API just as you did.
  2. But I didn't write any unit tests at that moment. Instead, I just had a look at my database (SQL 2008 R2) after Code First re-generated the database structure.
  3. And now it is getting weird. At least to me. SSMS tells me that the Guest-Language relation which has been created and configured by your fluent API statement has:
    • Enforce Foreign Key constraint: Yes
    • Delete Rule: No Action
    • Update Rule: No Action
  4. I was trying to configure the Delete Rule to be "Set Null" or at lease "Set Default" with fluent API. But since this didn't work I didn't even try entering some sample data. I did not know what to do anymore and finally ended up here.

And now, I still don't understand why your code is working at all. Here are my observations:

  • Your unit test creates a Language entity and a Guest entity in the database and then associates the Guest with the Language. So far so good. When the Language is removed again by your code, the Guest entity finally ends up with NULL in its foreign key (LanguageID). This is exactly what I tried to achieve. However, I don't understand why this works, because once again: the Delete Rule is set to "No Action".

  • I then tried the same with SSMS: 1. I manually entered a new Language entity. 2. I manually entered a new Guest entity and set its LanguageID to the new Lnaguage's PK. So far, this is the same result as to your first context.SaveChanges(). And now comes the difference: When I try to delete the Language entity manually (selecting the row and hitting on [Del], SSMS reports an error "No rows were deleted. ... The DELETE statement conflicted with the REFERENCE constraint Guest_PreferredLanguage." Yes, and this is EXACTLY what I expected due to the Update Rule being set to "No Action". But at the same time I am confused because "why the heck is the EF allowed to do things that I don't"? ;-)

If you have an explanantion to this, I would be very grateful again.

Thanks again, Morteza (and please keep on writing your blogs, they are very helpful to all of us).

link|improve this answer
Thanks for your kind words and it is such a pleasure to hear that you find the blog posts helpful. For your questions, please see my updated answer above :) – Morteza Manavi Feb 20 '11 at 16:40
feedback

Your Answer

 
or
required, but never shown

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