You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it make sense with a default conflict resolver on the DatasyncOfflineOptionsBuilder so that we only have to handle specific entities where needed?
Example:
protected override void OnDatasyncInitialization(DatasyncOfflineOptionsBuilder optionsBuilder)
{
optionsBuilder.DefaultConflictResolver = new ClientWinsConflictResolver();
optionsBuilder.Entity<Movie>(cfg =>
{
cfg.ConflictResolver = new ServerWinsConflictResolver();
});
}