Created
September 29, 2014 04:56
-
-
Save codescribler/586a6f9d02b5feadfce4 to your computer and use it in GitHub Desktop.
Example usage of conflict resolver
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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