Radical Documentation
View on GitHub
Primary version
Primary version
  • Home
  • Presentation
    • AbstractViewModel
    • Conventions
      • Bootstrap Conventions
      • Runtime Conventions
      • Conventions override
    • Commands and DelegateCommand
    • IViewResolver
      • Default view behaviors
      • view life cycle events
        • Callback expectations
        • notify messages
    • Message broker MVVM built-in messages
    • Application boot process
      • Application configuration
      • Application shutdown
      • Singleton applications
    • AbstractMementoViewModel
      • Simple ViewModel graphs
      • Collections and complex ViewModel graphs
    • Validation and Validation Services
    • Resources
      • Services as resources
      • ViewModels as resources
  • UI Composition
    • UI Composition
      • Region content lifecycle
      • TabControl region
      • Create a custom region
  • Concepts
    • Inversion of Control
      • Third party DI containers
    • Entities
      • Property System
    • Messaging and Message Broker
      • POCO messages
      • Standalone message handlers
    • Observers
      • PropertyObserver
      • MementoObserver
      • BrokerObserver
  • Memento
    • Change Tracking Service
      • MementoEntity and MementoEntityCollection
      • Handling change tracking:
        • Simple model
        • Collections
        • Complex objects graph
      • Atomic operations
      • Change Tracking Service API
      • Property Metadata for the ChangeTrackingService
      • Handling collection sync
      • Property State
  • Behaviors
    • DataGrid Behaviors
    • Password
    • Generic routed event handler to command behavior
    • Overlay adorner
      • Busy status manager
    • TextBox behaviors:
      • Command
      • Auto select
      • DisableUndoManager (.Net 3.5 only)
  • Markup Extensions
    • Editor binding
    • Auto Command binding
  • How to
    • Get the view of a given view model
    • Bi-directional communication between different windows/views
    • Handle the busy status during async/long running operations
    • Implement a customer improvement program
    • Manage focus
    • Create a splash screen
    • Access view model after view is closed
    • Intercept ViewModels before they are used
  • Upgrade guides
    • Radical Presentation 1.x to Radical 2.x for .NET Core
    • Radical 2.0.0 to Radical 2.1.0
Powered by GitBook
On this page
  1. Memento
  2. Change Tracking Service

Property State

PreviousHandling collection syncNextDataGrid Behaviors

Last updated 3 years ago

When dealing with change tracking systems it is important to know the state of the graph from 2 different point of views

  • System point of view

  • User point of view

The Radical allows to gather both point of views with property level granularity.

Given a Person entity with a Name property we can basically be in 2 major scenarios:

var person = new Person(name: "Mauro");

var memento = new ChangeTrackingService();
memento.Attach(person);

person.Name = "Giovanni"

Or something a bit more problematic:

var person = new Person(name: "Mauro");

var memento = new ChangeTrackingService();
memento.Attach(person);

person.Name = "Giovanni"

//some other changes

person.Name = "Mauro"

In both cases from the ChangeTrackingService perspective the Person instance is changed, however from the user perspective maybe it's not since the Name property has the exact same value as when it was instantiated.

The GetPropertyState(entity, property) method of ChangeTrackingService, given a tracked entity and a property name, returns the current state of the property as seen by the tracking service.

The state can be:

  • None : The property has no tracked states, thus is not changed either;

  • Changed: The property has tracked states, thus has changes; This means that in some way the property changed over time, this state does not take into account the actual value of the property;

  • ValueChanged: The property has tracked states and the actual value is different from the original one;

Using as a sample the above Person related changes:

var state = memento.GetPropertyState(person, p => p.Name);

The value of state is Changed & ValueChanged. On the contrary the second one is Changed only, because the memento service has tracked some changes but the current value is the same as the original one.

Extensions

In order to simply the query there is also an extension method for IMemento entities:

  • IsPropertyValueChanged(propertyName): Is an extension method to IMemento entities that acts like a shortcut to get if a property value changed over time or not;

Sample usage

var person = new Person(name: "Mauro");

var memento = new ChangeTrackingService();
memento.Attach(person);

person.Name = "Giovanni"
  
var isNameValueChanged = person.IsPropertyValueChanged(p => p.Name); //will be true
ChangeTrackingService