Skip to content

Instantly share code, notes, and snippets.

@codescribler
Created September 29, 2014 04:56
Show Gist options
  • Save codescribler/586a6f9d02b5feadfce4 to your computer and use it in GitHub Desktop.
Save codescribler/586a6f9d02b5feadfce4 to your computer and use it in GitHub Desktop.
Example usage of conflict resolver
// UnApproved with conflict with Approved but nothing else
_concurrencyConflictResolver.RegisterConflictList(typeof(UnApproved), new List<Type> { typeof(Approved) });
// SignInRecorded doesnt conflict with anything
_concurrencyConflictResolver.RegisterConflictList(typeof(SignInRecorded), new List<Type>());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment