everyone.

I'm trying to add an optimistic concurrency in my entities. There's a property defined in the entity class:

public byte[] ObjectVersion
{
    // ...
}

Here's configuration of this property:

Property(obj => obj.ObjectVersion)
    .HasDatabaseGeneratedOption(DatabaseGeneratedOption.Computed)
    .HasColumnName("ObjectVersion")
    .IsConcurrencyToken();

In run-time exception is thrown: "The store generated pattern 'Computed' is not supported for properties that are not of type 'timestamp' or 'rowversion'". Matching database column has 'rowversion' type.

OK, let's change the configuration code:

    Property(obj => obj.ObjectVersion)
    .HasDatabaseGeneratedOption(DatabaseGeneratedOption.Computed)
    .HasColumnName("ObjectVersion")
    .HasColumnType("rowversion")
    .IsConcurrencyToken();

But exception is still thrown. What am I doing wrong?

link|improve this question

38% accept rate
1  
this might clarify the issue: social.msdn.microsoft.com/Forums/en-IE/adodotnetentityframework/… – BrokenGlass Nov 14 '11 at 14:36
I've read that topic. It describes a little bit different situation: 1) any custom property, which is not configured as concurrency token; 2) Alan_chen wrote, that issue at the ObjectContext.CreateDatabase, I'm not using it. – Dennis Nov 14 '11 at 16:04
@BrokenGlass: Thanks, you are quite right! I was inattentive when looking at the stack trace. The reason of the exception was in default database initializer: I typed wrong database name, and it tried to create database, so, I've got a situation from Ladislav's topic from MSDN. But it is very, very stupid in case of default strategy - to create database! Imagine, that admin is connecting to a database server, thinking he's connecting to the existing database. Default initializer makes the database, and then all of the connected users looking at the empty datatables... crash – Dennis Nov 15 '11 at 7:59
feedback

1 Answer

The documentation shows these two methods for configuring a concurrency token:

modelBuilder.Entity<OfficeAssignment>()
    .Property(t => t.Timestamp)
    .IsConcurrencyToken();


modelBuilder.Entity<OfficeAssignment>()
    .Property(t => t.Timestamp)
    .IsRowVersion();  
link|improve this answer
Did you mean that I have to remove ".HasDatabaseGeneratedOption()" call? Does "IsConcurrencyToken" option enough for DbContext to update value automatically from storage? – Dennis Nov 14 '11 at 16:11
@Dennis, I cannot say for sure about IsConcurrencyToken, but IsRowVersion should update automatically. – adrift Nov 14 '11 at 22:47
close look at the IsConcurrencyToken and HasDatabaseGeneratedOption shown that they must be combined for normal work. And where "IsRowVersion" method from? PrimitivePropertyConfiguration class doesn't contains it. – Dennis Nov 15 '11 at 8:05
@Dennis, it's a method on BinaryPropertyConfiguration: msdn.microsoft.com/en-us/library/… – adrift Nov 15 '11 at 14:08
feedback

Your Answer

 
or
required, but never shown

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