/// <summary> /// Equalses the specified other. /// </summary> /// <param name="other">The other.</param> /// <returns></returns> public bool Equals(DocumentQuery other) { if(ReferenceEquals(null, other)) return false; if(ReferenceEquals(this, other)) return true; return Equals(other.key, key); }