I'm having some problems getting EF's Optimistic Concurrency(version 4.0) to fail with the following example. .Net 4.0/C#
In the database I have the following table:
Create Table Work
(
Id int identity(1,1) Primary Key
,UserIdAssignTo int null
,RowVer RowVersion not null
)
There are no F/Ks on the table. I inserted some test data
Insert Into Work(UserIdAssignTo, GroupIdAssignTo)Values(0, 1)
For the Entity Model, I added the table to the canvas and set:
- RowVer Property/Column
- Concurrency Mode: Fixed
- Getter/Setter are both Public
- Nullable: False
- Store Generated: Computed
- Type: Binary
For the DataAccess I have the following:
public class WorkData
{
public int Id { get; set; }
public int? UserIdAssignTo { get; set; }
public byte[] Version { get; set; }
private string _conn = String.Empty;
public WorkData()
{
_conn = System.Configuration.ConfigurationManager.ConnectionStrings["SQL"].ConnectionString;
}
/// <summary>
/// Retrieves by the record's primary key
/// </summary>
/// <param name="WorkId">Primary Key To Search On</param>
public void GetById(int WorkID)
{
using (SQL context = new SQL(_conn))
{
Work fromDb = context.Works.First(db => db.Id == WorkID);
if (fromDb != null)
{
Id = fromDb.Id;
UserIdAssignTo = fromDb.UserIdAssignTo;
Version = fromDb.RowVer;
}
}
}
/// <summary>
/// Updates all the fields in record by primary key
/// </summary>
public void Update()
{
using (SQL context = new SQL(_conn))
{
Work fromDb = context.Works.FirstOrDefault(db => db.Id == Id);
if (fromDb != null)
{
fromDb.UserIdAssignTo = UserIdAssignTo;
fromDb.RowVer = Version;
context.SaveChanges();
UserIdAssignTo = fromDb.UserIdAssignTo;
Version = fromDb.RowVer;
}
}
}
}
And my test case (using MbUnit)
[Test] public void ConcurencyDataTest() { WorkData first = new WorkData(); first.GetById(1);
WorkData second = new WorkData();
second.GetById(1);
first.UserIdAssignTo = null;
first.Update();
second.UserIdAssignTo = 1;
second.Update();
}
Run SQL Profiler I got this when the "first" object updated in the DB:
exec sp_executesql N'update [dbo].[Work]
set [UserIdAssignTo] = null
where (([Id] = @0) and ([RowVer] = @1))
select [RowVer]
from [dbo].[Work]
where @@ROWCOUNT > 0 and [Id] = @0',N'@0 int,@1 binary(8)',@0=1,@1=0x00000000024E6E2E
And when the second object updated in the db:
exec sp_executesql N'update [dbo].[Work]
set [UserIdAssignTo] = @0
where (([Id] = @1) and ([RowVer] = @2))
select [RowVer]
from [dbo].[Work]
where @@ROWCOUNT > 0 and [Id] = @1',N'@0 int,@1 int,@2 binary(8)',@0=1,@1=1,@2=0x00000000024E6E2F
This should throw an exception OptimisticConcurrencyException when "second" updates as the RowVersion properties shouldn't match, but instead it is successfully updating the object(which I don't want it to do). Not sure where I went wrong with this.
Basically what it looks like is happening is when I assign "fromDb.RowVersion = Version", EF seems to be ignoring that value and using what's in the database. I checked in the debugger and fromDb.RowVersion is being set, so it looks like somewhere in the "context.SaveChanges()" it is reverting back to it's old value.