/// <summary> /// Initializes a new instance of the <see cref="DataContextEntry" /> class. /// </summary> public DataContextEntry(string key, string layer, object value) { Key = key; Layer = layer; Value = value; shortName = ShortNameHelper.GetShortName(key); }
/// <summary> /// Returns a <see cref="System.String" /> that represents this instance. /// </summary> public override string ToString() { return($"name: {ShortNameHelper.GetShortName(Id)} - Type: {typeof(TValueType).FullName}"); }