public bool CompatibleProperty(string propertyName)
 {
     if (Grouping == null)
     {
         return(true);
     }
     else
     {
         return(Grouping.CompatibleProperty(propertyName));
     }
 }