For example we may want to configure LastName on Person to be a concurrency token. This means that if one user tries to save some changes to a Person , but another user has changed the LastName then an exception will be thrown. This may be desirable so that your application can prompt the user to ensure this record still represents the same actual person before saving their changes.sql
Data Annotationsapp
public class Person { public int PersonId { get; set; } [ConcurrencyCheck] public string LastName { get; set; } public string FirstName { get; set; } }
Fluent APIide
class MyContext : DbContext { public DbSet<Person> People { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Person>() .Property(p => p.LastName) .IsConcurrencyToken(); } } public class Person { public int PersonId { get; set; } public string LastName { get; set; } public string FirstName { get; set; } }
A timestamp is a property where a new value is generated by the database every time a row is inserted or updated. The property is also treated as a concurrency token. This ensures you will get an exception if anyone else has modified a row that you are trying to update since you queried for the data.ui
Data Annotationsthis
public class Blog { public int BlogId { get; set; } public string Url { get; set; } [Timestamp] public byte[] Timestamp { get; set; } }
Fluent APIspa
class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Blog>() .Property(p => p.Timestamp) .IsRowVersion(); } } public class Blog { public int BlogId { get; set; } public string Url { get; set; } public byte[] Timestamp { get; set; } }
There are three sets of values available to help resolve a concurrency conflict.code
Current values are the values that the application was attempting to write to the database.token
Original values are the values that were originally retrieved from the database, before any edits were made.three
Database values are the values currently stored in the database.ci
To handle a concurrency conflict, catch a DbUpdateConcurrencyException
during SaveChanges()
, use DbUpdateConcurrencyException.Entries
to prepare a new set of changes for the affected entities, and then retry the SaveChanges()
operation.
In the following example, Person.FirstName
and Person.LastName
are setup as concurrency token. There is a // TODO:
comment in the location where you would include application specific logic to choose the value to be saved to the database.
using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.DataAnnotations; using System.Linq; namespace EFSaving.Concurrency { public class Sample { public static void Run() { // Ensure database is created and has a person in it using (var context = new PersonContext()) { context.Database.EnsureDeleted(); context.Database.EnsureCreated(); context.People.Add(new Person { FirstName = "John", LastName = "Doe" }); context.SaveChanges(); } using (var context = new PersonContext()) { // Fetch a person from database and change phone number var person = context.People.Single(p => p.PersonId == 1); person.PhoneNumber = "555-555-5555"; // Change the persons name in the database (will cause a concurrency conflict) context.Database.ExecuteSqlCommand("UPDATE dbo.People SET FirstName = 'Jane' WHERE PersonId = 1"); try { // Attempt to save changes to the database context.SaveChanges(); } catch (DbUpdateConcurrencyException ex) { foreach (var entry in ex.Entries) { if (entry.Entity is Person) { // Using a NoTracking query means we get the entity but it is not tracked by the context // and will not be merged with existing entities in the context. var databaseEntity = context.People.AsNoTracking().Single(p => p.PersonId == ((Person)entry.Entity).PersonId); var databaseEntry = context.Entry(databaseEntity); foreach (var property in entry.Metadata.GetProperties()) { var proposedValue = entry.Property(property.Name).CurrentValue; var originalValue = entry.Property(property.Name).OriginalValue; var databaseValue = databaseEntry.Property(property.Name).CurrentValue; // TODO: Logic to decide which value should be written to database // entry.Property(property.Name).CurrentValue = <value to be saved>; // Update original values to entry.Property(property.Name).OriginalValue = databaseEntry.Property(property.Name).CurrentValue; } } else { throw new NotSupportedException("Don't know how to handle concurrency conflicts for " + entry.Metadata.Name); } } // Retry the save operation context.SaveChanges(); } } } public class PersonContext : DbContext { public DbSet<Person> People { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseSqlServer(@"Server=(localdb)\mssqllocaldb;Database=EFSaving.Concurrency;Trusted_Connection=True;"); } } public class Person { public int PersonId { get; set; } [ConcurrencyCheck] public string FirstName { get; set; } [ConcurrencyCheck] public string LastName { get; set; } public string PhoneNumber { get; set; } } } }