Exemplo n.º 1
0
        public bool Equals(TEntity x, TEntity y)
        {
            //if (x == null && y == null)
            //    return true;

            //if (x == null || y == null)
            //{
            //    return false;
            //}

            return(EntityContentHelper.AreEqual(x, y));
        }
Exemplo n.º 2
0
 public int GetHashCode(TEntity obj)
 {
     return(EntityContentHelper.GetContentHashCode(obj));
 }