Click here to Skip to main content
15,881,709 members
Articles / Desktop Programming / WPF

Building WPF Applications with Self-Tracking Entity Generator and Visual Studio 2012 - Project Setup

Rate me:
Please Sign up or sign in to vote.
5.00/5 (14 votes)
17 Mar 2013CPOL8 min read 68.4K   3.5K   44  
This article describes the project setup of building a WPF sample application with Self-Tracking Entity Generator and Visual Studio 2012.
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated from a template.
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Resources;
using System.Runtime.Serialization;
using System.Text;
using System.Xml.Linq;

#if WPF
namespace SchoolSample.EntityModel
{
    public partial class Course : IClientChangeTracking, IChangeTracking, IRevertibleChangeTracking,
                                 INotifyDataErrorInfo, INodeLevel, IEditableObject
    {
        #region IClientChangeTracking Interface
    
        /// <summary>
        /// Accepts changes made to the entity object
        /// </summary>
        void IClientChangeTracking.AcceptChanges()
        {
            this.AcceptChanges();
        }
    
        /// <summary>
        /// Rejects changes made to the entity object
        /// </summary>
        void IClientChangeTracking.RejectChanges()
        {
            this.RejectChanges();
        }
    
        /// <summary>
        /// Returns whether the entity object has any changes
        /// </summary>
        public Boolean HasChanges
        {
            get { return _hasChanges; }
            private set
            {
                if (_hasChanges != value)
                {
                    _hasChanges = value;
                    if (_propertyChanged != null)
                    {
                        _propertyChanged(this, new PropertyChangedEventArgs("HasChanges"));
                    }
                }
            }
        }
        private Boolean _hasChanges = true;
    
        /// <summary>
        /// Accepts changes made to the entity object and all objects of its object graph
        /// </summary>
        public virtual void AcceptObjectGraphChanges()
        {
            this.AcceptChanges();
            // call AccetChanges() on all Navigation properties
            foreach (var item in Enrollments)
                item.AcceptChanges();
            if (Instructor != null)
                Instructor.AcceptChanges();
        }
    
        /// <summary>
        /// Rejects changes made to the entity object and all objects of its object graph
        /// </summary>
        public virtual void RejectObjectGraphChanges()
        {
            this.RejectChanges();
            // call RejectChanges() on all Navigation properties
            foreach (var item in Enrollments)
                item.RejectChanges();
            if (Instructor != null)
                Instructor.RejectChanges();
        }
    
        /// <summary>
        /// Returns whether the entity object along with its object graph has any changes
        /// </summary>
        public bool ObjectGraphHasChanges()
        {
            var visitedGraph = new List<object>();
            return ObjectGraphHasChanges(ref visitedGraph);
        }
    
        internal virtual bool ObjectGraphHasChanges(ref List<object> visitedGraph)
        {
            // if already visited this object, just return false
            if (visitedGraph.Any(n => ReferenceEquals(n, this))) return false;
    
            var hasChanges = HasChanges;
            if (hasChanges) return true;
    
            // if not, add itself to the visited graph
            visitedGraph.Add(this);
    
            // call ObjectGraphHasChanges() on all Navigation properties
            foreach (var item in Enrollments)
            {
                hasChanges = item.ObjectGraphHasChanges(ref visitedGraph);
                if (hasChanges) return true;
            }
            if (Instructor != null)
            {
                hasChanges = Instructor.ObjectGraphHasChanges(ref visitedGraph);
                if (hasChanges) return true;
            }
            return false;
        }
    
        internal virtual bool ObjectGraphHasChanges(Dictionary<INodeLevel, int> nodeLevelDictionary)
        {
            var hasChanges = HasChanges;
            if (hasChanges) return true;
    
            // if not, find out the current node level
            var currentLevel = nodeLevelDictionary.Single(n => ReferenceEquals(n.Key, this)).Value;
    
            // call ObjectGraphHasChanges() on all Navigation properties of the next level
            foreach (var item in Enrollments)
            {
                if (nodeLevelDictionary.Any(n => ReferenceEquals(n.Key, item) && n.Value == (currentLevel + 1)))
                {
                    hasChanges = item.ObjectGraphHasChanges(nodeLevelDictionary);
                    if (hasChanges) return true;
                }
            }
            if (Instructor != null &&
                nodeLevelDictionary.Any(n => ReferenceEquals(n.Key, Instructor) && n.Value == (currentLevel + 1)))
            {
                hasChanges = Instructor.ObjectGraphHasChanges(nodeLevelDictionary);
                if (hasChanges) return true;
            }
            return false;
        }
    
        internal Dictionary<INodeLevel, int> GetNodeLevelDictionary()
        {
            int currentLevel = 1; // start with level one
            var nodeLevelDictionary = new Dictionary<INodeLevel, int> { { this, currentLevel } };
            bool foundNextLevelNodes;
        
            do
            {
                var nextLevelNodes = new List<INodeLevel>();
                var level = currentLevel;
                // search for the next level nodes using what are currently in the nodeLevelDictionary
                foreach (var n in nodeLevelDictionary.Where(i => i.Value == level))
                {
                    nextLevelNodes.AddRange(n.Key.GetNextLevelNodes(nodeLevelDictionary));
                }
                foundNextLevelNodes = nextLevelNodes.Count > 0;
                if (foundNextLevelNodes)
                {
                    currentLevel++;
                    foreach (var node in nextLevelNodes)
                        nodeLevelDictionary.Add(node, currentLevel);
                }
            } while (foundNextLevelNodes);
        
            return nodeLevelDictionary;
        }
    
        public virtual List<INodeLevel> GetNextLevelNodes(Dictionary<INodeLevel, int> nodeLevelDictionary)
        {
            var nextLevelNodes = new List<INodeLevel>();
    
            // loop through Navigation properties to add next level nodes
            nextLevelNodes.AddRange(
                Enrollments.Where(
                    n => nodeLevelDictionary
                             .All(i => !ReferenceEquals(i.Key, n))));
            if (Instructor != null && nodeLevelDictionary.All(i => !ReferenceEquals(i.Key, Instructor)))
                nextLevelNodes.Add(Instructor);
    
            return nextLevelNodes;
        }
    
        /// <summary>
        /// Returns the estimate size of the entity object along with its object graph
        /// </summary>
        public long EstimateObjectGraphSize()
        {
            long size = 0;
            var visitedGraph = new List<object>();
            EstimateObjectGraphSize(ref size, ref visitedGraph);
            return size;
        }
    
        internal virtual void EstimateObjectGraphSize(ref long size, ref List<object> visitedGraph)
        {
            // if already visited this object, just return
            if (visitedGraph.Any(n => ReferenceEquals(n, this))) return;
    
            size += EstimateSize;
            // add itself to the visited graph
            if (visitedGraph.All(i => !ReferenceEquals(i, this))) visitedGraph.Add(this);
    
            // call EstimateObjectGraphSize() on all Navigation properties
            foreach (var item in Enrollments)
            {
                item.EstimateObjectGraphSize(ref size, ref visitedGraph);
            }
            if (Instructor != null)
            {
                Instructor.EstimateObjectGraphSize(ref size, ref visitedGraph);
            }
        }
    
        /// <summary>
        /// Returns the estimate size of the optimized entity object graph
        /// with only objects that have changes
        /// </summary>
        public long EstimateObjectGraphChangeSize()
        {
            long size = 0;
            if (!ObjectGraphHasChanges()) return size;
            var nodeLevelDictionary = GetNodeLevelDictionary();
            EstimateObjectGraphChangeSize(ref size, nodeLevelDictionary);
            return size;
        }
    
        internal virtual void EstimateObjectGraphChangeSize(ref long size, Dictionary<INodeLevel, int> nodeLevelDictionary)
        {
            size += EstimateSize;
    
            // find out the current node level
            var currentLevel = nodeLevelDictionary.Single(n => ReferenceEquals(n.Key, this)).Value;
    
            // call EstimateObjectGraphChangeSize() on all Navigation properties that has change
            foreach (var item in Enrollments)
            {
                if (nodeLevelDictionary.Any(n => ReferenceEquals(n.Key, item) && n.Value != (currentLevel - 1)))
                {
                    if (ChangeTracker.ObjectsAddedToCollectionProperties.ContainsKey("Enrollments")
                        && ChangeTracker.ObjectsAddedToCollectionProperties["Enrollments"].Contains(item))
                    {
                        // if item exists in ObjectsAddedToCollectionProperties, we need to add its size
                        item.EstimateObjectGraphChangeSize(ref size, nodeLevelDictionary);
                    }
                    else if (item.ObjectGraphHasChanges(nodeLevelDictionary))
                    {
                        // if item has changes, we also need to add its size
                        item.EstimateObjectGraphChangeSize(ref size, nodeLevelDictionary);
                    }
                }
            }
            // if Instructor has already been visited, we need to skip it
            if (Instructor != null &&
                nodeLevelDictionary.Any(n => ReferenceEquals(n.Key, Instructor) && n.Value != (currentLevel - 1)))
            {
                if (Instructor.ObjectGraphHasChanges(nodeLevelDictionary))
                    Instructor.EstimateObjectGraphChangeSize(ref size, nodeLevelDictionary);
            }
        }
    
        /// <summary>
        /// Returns an optimized entity object graph with only objects that have changes
        /// </summary>
        public IObjectWithChangeTracker GetObjectGraphChanges()
        {
            if (!ObjectGraphHasChanges()) return null;
    
            var item = this.Clone();
            var nodeLevelDictionary = item.GetNodeLevelDictionary();
    
            // loop through all navigation properties and trim any unchanged items
            item.TrimUnchangedEntities(nodeLevelDictionary);
    
            return item;
        }
    
        internal virtual void TrimUnchangedEntities(Dictionary<INodeLevel, int> nodeLevelDictionary)
        {
            bool changeTrackingEnabled = ChangeTracker.ChangeTrackingEnabled;
            this.StopTracking();
    
            // find out the current node level
            var currentLevel = nodeLevelDictionary.Single(n => ReferenceEquals(n.Key, this)).Value;
    
            // trim all navigation property items that do not have any change
            foreach (var item in Enrollments.ToList())
            {
                if (nodeLevelDictionary.Any(n => ReferenceEquals(n.Key, item) && n.Value != (currentLevel - 1)))
                {
                    if (ChangeTracker.ObjectsAddedToCollectionProperties.ContainsKey("Enrollments")
                        && ChangeTracker.ObjectsAddedToCollectionProperties["Enrollments"].Contains(item))
                    {
                        // if item exists in ObjectsAddedToCollectionProperties, we need to keep it
                        item.TrimUnchangedEntities(nodeLevelDictionary);
                    }
                    else if (item.ObjectGraphHasChanges(nodeLevelDictionary))
                    {
                        // if n has changes, we also need to keep it
                        item.TrimUnchangedEntities(nodeLevelDictionary);
                    }
                    else
                    {
                        Enrollments.Remove(item);
                    }
                }
            }
            // if Instructor has already been visited, we need to skip it
            if (Instructor != null &&
                nodeLevelDictionary.Any(n => ReferenceEquals(n.Key, Instructor) && n.Value != (currentLevel - 1)))
            {
                if (Instructor.ObjectGraphHasChanges(nodeLevelDictionary))
                {
                    Instructor.TrimUnchangedEntities(nodeLevelDictionary);
                }
                else
                {
                    Instructor = null;
                }
            }
    
            ChangeTracker.ChangeTrackingEnabled = changeTrackingEnabled;
        }

        #endregion

        #region IClientChangeTracking Helper Property
    
        internal virtual long EstimateSize
        {
            get
            {
                long _size = 0;
                // estimate size of all Simple Properties
                _size += sizeof(Int32);    // CourseId
                _size += sizeof(Int32);    // InstructorId
                if (Title != null)
                    _size += Title.Length * sizeof(char);    // Title
                _size += sizeof(ulong);    // StartDate
                _size += sizeof(ulong);    // EndDate
                _size += sizeof(Int32);    // ClassSize
                if (Version != null)
                    _size += Version.Length * sizeof (Byte);    // Version
                return _size;
            }
        }

        #endregion

        #region IChangeTracking and IRevertibleChangeTracking interfaces
    
        void IChangeTracking.AcceptChanges()
        {
            this.AcceptChanges();
        }
    
        bool IChangeTracking.IsChanged
        {
            get { return HasChanges; }
        }
    
        void IRevertibleChangeTracking.RejectChanges()
        {
            this.RejectChanges();
        }

        #endregion

        #region INotifyDataErrorInfo interface
    
        private Dictionary<string, List<ValidationResult>> _validationErrors;
    
        protected Dictionary<string, List<ValidationResult>> ValidationErrors
        {
            get { return _validationErrors ?? (_validationErrors = new Dictionary<string, List<ValidationResult>>()); }
        }
    
        protected event EventHandler<DataErrorsChangedEventArgs> ErrorsChanged;
        
        /// <summary>
        /// Raises the INotifyDataErrorInfo.ErrorsChanged event
        /// </summary>
        protected void RaiseErrorsChanged(string propertyName)
        {
            if (ErrorsChanged != null)
            {
                ErrorsChanged(this, new DataErrorsChangedEventArgs(propertyName));
            }
        }
    
        event EventHandler<DataErrorsChangedEventArgs> INotifyDataErrorInfo.ErrorsChanged
        {
            add
            {
                ErrorsChanged += value;
            }
            remove
            {
                ErrorsChanged -= value;
            }
        }
    
        /// <summary>
        /// Gets the currently known errors for the provided property name. Use String.Empty/null
        /// to retrieve entity-level errors.
        /// </summary>
        IEnumerable INotifyDataErrorInfo.GetErrors(string propertyName)
        {
            if (propertyName == null)
            {
                propertyName = string.Empty;
            }
    
            if (ValidationErrors.ContainsKey(propertyName))
            {
                return ValidationErrors[propertyName];
            }
            return null;
        }
    
        /// <summary>
        /// Gets a value indicating whether there are known errors or not.
        /// </summary>
        bool INotifyDataErrorInfo.HasErrors
        {
            get
            {
                return ValidationErrors.Keys.Count != 0;
            }
        }

        #endregion

        #region INotifyDataErrorInfo Protected & Private Helper Methods
    
        /// <summary>
        /// Declares a new error for the property name provided, or the entity if
        /// propertyName is String.Empty/null.
        /// </summary>
        protected void AddError(string propertyName, ValidationResult validationResult)
        {
            if (validationResult == null)
            {
                throw new ArgumentNullException("validationResult");
            }
    
            if (propertyName == null)
            {
                propertyName = string.Empty;
            }
    
            List<ValidationResult> errors;
            if (!ValidationErrors.ContainsKey(propertyName))
            {
                errors = new List<ValidationResult>();
                ValidationErrors.Add(propertyName, errors);
            }
            else
            {
                errors = ValidationErrors[propertyName];
            }
            // search for duplicate error message with the same propertyName
            var foundError = errors.FirstOrDefault(n => 
                n.ErrorMessage == validationResult.ErrorMessage);
            if (foundError == null)
            {
                errors.Insert(0, validationResult);
                RaiseErrorsChanged(propertyName);
            }
        }
    
        /// <summary>
        /// Removes one specific error for the provided property name.
        /// </summary>
        /// <param name="propertyName"></param>
        /// <param name="validationResult"></param>
        protected void RemoveError(string propertyName, ValidationResult validationResult)
        {
            if (validationResult == null)
            {
                throw new ArgumentNullException("validationResult");
            }
    
            if (propertyName == null)
            {
                propertyName = string.Empty;
            }
    
            List<ValidationResult> errors;
            if (ValidationErrors.ContainsKey(propertyName))
            {
                errors = ValidationErrors[propertyName];
                // search for the error message that need to be removed
                var foundError = errors.FirstOrDefault(n =>
                    n.ErrorMessage == validationResult.ErrorMessage);
                if (foundError != null)
                {
                    errors.Remove(foundError);
                    if (errors.Count == 0)
                    {
                        // This entity no longer exposes errors for this property name.
                        ValidationErrors.Remove(propertyName);
                    }
                    RaiseErrorsChanged(propertyName);
                }
            }
        }
    
        /// <summary>
        /// Removes the known errors for the provided property name.
        /// </summary>
        /// <param name="propertyName">Propery name or String.Empty/null for top-level errors</param>
        protected void ClearErrors(string propertyName)
        {
            if (propertyName == null)
            {
                propertyName = string.Empty;
            }
    
            if (ValidationErrors.ContainsKey(propertyName))
            {
                // This entity no longer exposes errors for this property name.
                ValidationErrors.Remove(propertyName);
                RaiseErrorsChanged(propertyName);
            }
        }
    
        /// <summary>
        /// Removes the known errors for all property names.
        /// </summary>
        protected void ClearErrors()
        {
            foreach (string propertyName in ValidationErrors.Keys.ToList())
            {
                // This entity no longer exposes errors for this property name.
                ValidationErrors.Remove(propertyName);
                RaiseErrorsChanged(propertyName);
            }
        }
    
        /// <summary>
        /// Gets or sets a value indicating whether to suspend validation
        /// whenever any entity property changes.
        /// </summary>
        public Boolean SuspendValidation;
    
        /// <summary>
        /// Gets a value indicating whether or not top-level validation rules
        /// must be applied whenever any entity property changes.
        /// </summary>
        protected static Boolean ValidateEntityOnPropertyChanged;
    
        /// <summary>
        /// Removes any known errors for the provided property name
        /// by calling ClearErrors()
        /// </summary>
        /// <param name="propertyName">Propery name or String.Empty/null for top-level errors</param>
        partial void PropertySetterEntry(string propertyName)
        {
            if (IsDeserializing || SuspendValidation)
            {
                return;
            }
    
            if (ValidateEntityOnPropertyChanged)
            {
                ClearErrors();
            }
            else
            {
                ClearErrors(propertyName);
            }
        }
    
        /// <summary>
        /// Validates for any known errors for the provided property name
        /// </summary>
        /// <param name="propertyName">Propery name or String.Empty/null for top-level errors</param>
        /// <param name="propertyValue">Property value</param>
        partial void PropertySetterExit(string propertyName, object propertyValue)
        {
            if (IsDeserializing || SuspendValidation)
            {
                return;
            }
    
            if (ValidateEntityOnPropertyChanged)
            {
                Validate(string.Empty, this);
            }
            else
            {
                Validate(propertyName, propertyValue);
            }
        }

        #endregion

        #region IEditableObject interface
    
        private Dictionary<string , object> _cache;
    
        public virtual void BeginEdit()
        {
            if (_cache == null) _cache = new Dictionary<string, object>();
            // copy all Simple Properties except the primary key fields
            _cache["InstructorId"] = InstructorId;
            _cache["Title"] = Title;
            _cache["StartDate"] = StartDate;
            _cache["EndDate"] = EndDate;
            _cache["ClassSize"] = ClassSize;
            _cache["Version"] = Version;
            // copy all Navigation Properties
            _cache["Enrollments"] = Enrollments;
            _cache["Instructor"] = Instructor;
            // copy ChangeTracker
            _cache["ChangeTracker"] = ChangeTracker.Clone();
        }
    
        public virtual void CancelEdit()
        {
            if (_cache == null) _cache = new Dictionary<string, object>();
            if (_cache.Count == 0) return;
            bool changeTrackingEnabled = ChangeTracker.ChangeTrackingEnabled;
            this.StopTracking();
            // copy all Simple Properties except the primary key fields
            if (InstructorId != (int)_cache["InstructorId"])
                InstructorId = (int)_cache["InstructorId"];
            else
                OnPropertyChanged("InstructorId");
            if (Title != (string)_cache["Title"])
                Title = (string)_cache["Title"];
            else
                OnPropertyChanged("Title");
            if (StartDate != (Nullable<System.DateTime>)_cache["StartDate"])
                StartDate = (Nullable<System.DateTime>)_cache["StartDate"];
            else
                OnPropertyChanged("StartDate");
            if (EndDate != (Nullable<System.DateTime>)_cache["EndDate"])
                EndDate = (Nullable<System.DateTime>)_cache["EndDate"];
            else
                OnPropertyChanged("EndDate");
            if (ClassSize != (Nullable<int>)_cache["ClassSize"])
                ClassSize = (Nullable<int>)_cache["ClassSize"];
            else
                OnPropertyChanged("ClassSize");
            if (Version != (byte[])_cache["Version"])
                Version = (byte[])_cache["Version"];
            else
                OnPropertyChanged("Version");
            // copy all Navigation Properties
            Enrollments = (TrackableCollection<Enrollment>)_cache["Enrollments"];
            Instructor = (Instructor)_cache["Instructor"];
            // copy ChangeTracker
            ChangeTracker = (ObjectChangeTracker)_cache["ChangeTracker"];
            ChangeTracker.ChangeTrackingEnabled = changeTrackingEnabled;
            _cache.Clear();
        }
    
        public virtual void EndEdit()
        {
            if (_cache == null) _cache = new Dictionary<string, object>();
            _cache.Clear();
        }

        #endregion

    }
}
#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Weidong has been an information system professional since 1990. He has a Master's degree in Computer Science, and is currently a MCSD .NET

Comments and Discussions