/// <summary>
 /// Useful for rendering the primary keys for a FindAsync
 /// Will return the primary keys in the following format
 ///   [0]Parm1 (number), Parm2(text), Parm3 (number)
 ///   will return
 ///   Parm1, Parm2, Parm3
 /// </summary>
 /// <param name="varPrefix">What the variable will be prefixed with.</param>
 public static string AsCsvString(this IProperty This)
 {
     return(This.AsCsvString(""));
 }