/// <summary> /// Attempts to get the value of the Property called <paramref name="name"/> from the underlying Entity. /// <remarks> /// Only properties that exist on <typeparamref name="TEntityType"/> can be retrieved. /// Both modified and unmodified properties can be retrieved. /// </remarks> /// </summary> /// <param name="name">The name of the Property</param> /// <param name="value">The value of the Property</param> /// <returns>True if the Property was found</returns> public bool TryGetPropertyValue(string name, out object value) { if (name == null) { throw Error.ArgumentNull("name"); } if (!_propertiesThatExist.ContainsKey(name)) { value = null; return(false); } PropertyAccessor <TEntityType> cacheHit = _propertiesThatExist[name]; value = cacheHit.GetValue(_entity); return(true); }