public bool Equals(QuerySnapshotWrapper other) { if (ReferenceEquals(other, null)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } if (GetType() != other.GetType()) { return(false); } if (ReferenceEquals(_querySnapshot, other._querySnapshot)) { return(true); } return(_querySnapshot.Equals(other._querySnapshot)); }
public bool Equals(TypedQuerySnapshot <T> other) { return(QuerySnapshot.Equals(other.QuerySnapshot)); }