public override int GetHashCode()
        {
            int hash = 17;

            hash = hash * 23 + ParentRowId.GetHashCode();
            hash = hash * 23 + RowAction.GetHashCode();
            hash = hash * 23 + RowId.GetHashCode();
            hash = hash * 23 + RowType.GetHashCode();
            foreach (var field in this.Fields)
            {
                hash = hash * 23 + field.GetHashCode();
            }
            return(hash);
        }
 public override int GetHashCode()
 {
     return(RowId.GetHashCode());
 }