I am working on an application using Entity Framework 4.1 with DbContext API, in a disconnected environment. I have two basic entities, Person and Degree. Degree has a non-mandatory one-to-many relationship to Person.
The issue is occurring when I update the DegreeId property on the Person entity to a different value. When I save the changes, EF generates an Update statement on the actual Degree table. This in turn causes a concurrency error violation when two or more users are using the application. I was able to find the issue while using SQL Profiler. I’ve tried several configuration variations using the Fluent API, but nothing seems to suppress the additional Update statement on the Degree table.
Here are my entities:
public partial class Person
{
public int PersonId { get; set; }
public string FirstName { get; set; }
public string MiddleName { get; set; }
public string LastName { get; set; }
public Nullable<int> DegreeId { get; set; }
public Degree Degree { get; set; }
}
public partial class Degree
{
public int DegreeId { get; set; }
public string Name { get; set; }
}
In my Repository class, I am loading the Person object graph as such:
public override Person GetById(int id)
{
return DataContext.People
.Include(d => d.Degree)
.FirstOrDefault(x => x.PersonId == id);
}
In my Service layer, I am getting a person record, and then updating the DegreeId property to a specific value. Note: UnitOfWork.Commit method exposes SaveChanges on DbContext.
using (var unitOfWork = IoC.Resolve<IUnitOfWork>())
{
var personRepository = new PersonRepository(unitOfWork);
var person = personRepository.GetById(240);
person.DegreeId = 1;
personRepository.Update(person);
unitOfWork.Commit();
}
My repository update method attaches the person entity and marks the entity state as modified:
var state = DataContext.Entry(entity).State;
dbSet.Attach(entity);
DataContext.Entry(entity).State = EntityState.Modified;
Here is the SQL statement found in the Profiler session:
exec sp_executesql N'declare @p int
update [Client].[Degree]
set @p = 0
where (([DegreeId] = @0) and ([RowVersion] = @1))
select [RowVersion]
from [Client].[Degree]
where @@ROWCOUNT > 0 and [DegreeId] = @0',N'@0 int,
@1 binary(8)',@0=1,@1=0x0000000000004469
Does anyone know how to stop EF from sending this update statement to SQL Server? Is there something apparent in my entity configuration that causes EF to assume the Degree is also affected?
Thank you.
RowVersionproperties (withTimeStampattribute?) which you don't show here on yourPersonandDegreeclasses? Also: You don't need toIncludetheDegreeproperty when you load thePersonand you don't need to callpersonRepository.Update(person)at all because EF change detection will figure out thatperson.DegreeIdhas been modified when you commit. But I don't think that this is really the source of your problem. – Slauma Aug 24 '11 at 17:53usingblock you are showing was just a service method to retrieve the person, set the DegreeId and save the change. Apparently you are doing more with the loaded person then. Anyway, I was trying to find such an update statement on theDegreewith SQL profiler but can't find one. For me it behaves as expected: just an update statement forPersonwhich sets theDegreeIdand nothing more. It might be necessary that you show more context and code, the update statement you found is not "normal" in my opinion in the simple situation you described. – Slauma Aug 24 '11 at 18:21