Exemplo n.º 1
0
 /// <summary>
 /// Returns the string representation of the current query.
 /// </summary>
 /// <returns></returns>
 public override string ToString()
 {
     return(From + "{" + (Include != null && Include.Length > 0 ? Include.Aggregate((s1, s2) => s1 + "," + s2) : "") + "}");
 }