I have a problem updating a foreign key in an Entity Framework entity. I am using self tracking entities and have an entity with some relations where the foreign key is also present as a property (one of the new features of EF4). The key (an integer) is marked as Nullable and Concurrency Mode fixed.

Specifically I have an Alarm entity with a many to 0..1 relationship to a confirming user. (a user may confirm several alarms, but an alarm can be confirmed by only zero or one users).

The entity definitions (simplified):

Alarm properties
Id      Int32   non-nullable  identity entity key
UserId  Int32   nullable concurrency mode fixed
Alarm navigation properties
User    0..1 multiplicity

User properties
Id      Int32   non-nullable  identity entity key
Name    String  non-nullable

In my self tracking entity the confirming user id is auto-generated as a Nullable just as expected, however if I assign a user to an already persistent alarm and run ApplyChanges, the self tracking context extension tries to set the original value (null) in the EF context (In SetValue in the context extensions), but silently skips that because the ClrEquivalentType of the EdmType is a non-nullable Int32.

Auto-generated extension code:

    private static void SetValue(this OriginalValueRecord record, EdmProperty edmProperty, object value)
    {
        if (value == null)
        {
            Type entityClrType = ((PrimitiveType)edmProperty.TypeUsage.EdmType).ClrEquivalentType;
            if (entityClrType.IsValueType &&
                !(entityClrType.IsGenericType && typeof(Nullable<>) == entityClrType.GetGenericTypeDefinition()))
            {
                // Skip setting null original values on non-nullable CLR types because the ObjectStateEntry won't allow this
                return;
            }
        }

        int ordinal = record.GetOrdinal(edmProperty.Name);
        record.SetValue(ordinal, value);
    }

When the EF later tries to update my alarm I get an OptimisticConcurrencyException because it constructs a WHERE clause in the UPDATE statement where it uses 0 (zero) as the original user foreign key value instead of the correct "is null". (The WHERE clause is part of the EF optimistic concurrency mechanism, where the original values of the properties marked with "fixed" concurrency mode are checked agains the properties in the database).

Are nullable foreign keys / primitive types not fully supported in self tracking entities for EF? If not, am I forced to use dummy entities instead of null or are there other workarounds?

Update I have tried to reproduce the problem without STE, but plain EF seems to handle optimistic concurrency well for nullable foreign keys, so this is an STE problem, not an EF problem. There is numerous issues with self tracking entities, so it is not surprising that there is a glitch here. If I find a workaround that can be implemented in the STE T4 script I will post it here.

link|improve this question

62% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Bill Huth posted a working patch at MSDN.

link|improve this answer
feedback

Yes, nullable foreign keys are certainly allowed. We use them all over the place. You don't show your database or model, so it's difficult to be certain what the problem could be, but it sounds as though the Entity Framework cannot figure out the primary key of one of the tables involved. Perhaps you don't have one, maybe because one of them is a view? I'm guessing here, because you don't give much information about what you're doing.

link|improve this answer
I am pretty sure my primary keys are OK. The problem occurs when I change the nullable referred entity to a new entity. This causes the original entity reference (null) and the key (null) to be stored in the original values collection. When ApplyChanges is called the original values are attempted moved from the entities change tracker to the EF context, but since the EF context defines the type of the key as an Int32 and not Nullable<Int32> as the Self Tracking entity, it cannot be assigned null. – Holstebroe Aug 31 '10 at 7:28
Nullable int columns should be in your CSDL as int?, not int. Try it with a new (previously un-mapped) table; you'll see. Have you changed the nullability since you created the model? – Craig Stuntz Aug 31 '10 at 12:43
I tried to create a new entity "FooEntity" with no primary key and a nullable Int32 called Foo. This is what is generated in the CSDL: <EntityType Name="FooEntity" > <Property Type="Int32" Name="Foo" Nullable="true" /> </EntityType> No Int32? here. Changing Int32 to Int32? causes an error "The value 'Int32?' is invalid according to its datatype 'schemas.microsoft.com/ado/2008/09/edm:TPropertyType'; – Holstebroe Sep 1 '10 at 6:34
BTW Are you using self tracking entities with concurrency checking? The problem occurs when the self tracking entities context extension populates the context with a nullable integer marked with fixed concurrency mode. If you are not using a concurrency model or self tracking entities you probably don't experience the problem. – Holstebroe Sep 1 '10 at 6:51
Type="Int32" Nullable="true" is what I meant whent I wrote "int?". This shouls be codegened as int?. Fixed concurrency is probably not right for a random FK; we use a TIMESTAMP` field for this. – Craig Stuntz Sep 1 '10 at 12:35
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

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