Shaolinq.Persistence.ColumnInfo.GetFullPropertyName C# (CSharp) Method

GetFullPropertyName() public method

public GetFullPropertyName ( ) : string
return string
		public string GetFullPropertyName()
		{
			return this.fullPropertyName ?? (this.fullPropertyName = string.Join(".", this.VisitedProperties.Select(c => c.PropertyName).Concat(new[] { this.DefinitionProperty.PropertyName })));
		}