public virtual bool Equals(KeyManyToOneKeyEntity other)
		{
			if (ReferenceEquals(null, other))
			{
				return false;
			}
			if (ReferenceEquals(this, other))
			{
				return true;
			}
			return other.id == id && Equals(other.name, name);
		}
 public virtual bool Equals(KeyManyToOneKeyEntity other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(other.id == id && Equals(other.name, name));
 }