예제 #1
0
 /// <summary>
 /// Gets a textual representation of the row - eg. to be used in Examine.
 /// </summary>
 /// <returns>Returns an instance of <see cref="System.String"/> representing the value of the row.</returns>
 public override string GetSearchableText()
 {
     return(Areas.Aggregate("", (current, area) => current + area.GetSearchableText()));
 }