コード例 #1
0
 public static Value ToValue(this ValueEntity valueEntity)
 => valueEntity.Pipe(it => new Value(it.Name, it.Value));
コード例 #2
0
 protected bool Equals(ValueEntity other) => Name == other.Name && Value.Equals(other.Value) && Id == other.Id;