/// <summary> /// Unit test method for determining whether two facades are equivalent (ie: wrap the same server entity set). /// </summary> /// <param name="other">The other facade.</param> /// <returns> /// <c>true</c> if the two facades wrap the same entity sets; otherwise, <c>false</c>. /// </returns> internal bool IsEquivalentTo(EdmEntitySetFacade other) { return(other != null && ReferenceEquals(other.serverEntitySet, this.serverEntitySet)); }
/// <summary> /// Unit test method for determining whether two facades are equivalent (ie: wrap the same server entity set). /// </summary> /// <param name="other">The other facade.</param> /// <returns> /// <c>true</c> if the two facades wrap the same entity sets; otherwise, <c>false</c>. /// </returns> internal bool IsEquivalentTo(EdmEntitySetFacade other) { return other != null && ReferenceEquals(other.serverEntitySet, this.serverEntitySet); }