public void RemoveParameter(DataFormatParameter element) { _parameters.Remove(element); }
public void AddParameter(DataFormatParameter parameter) { _parameters.Add(parameter); }
public virtual bool EquivalentTo(DataFormatParameter other) { return(other.GetType() == GetType()); }
public override bool EquivalentTo(DataFormatParameter other) { return(base.EquivalentTo(other) && MappedColumn.Name == (other as MappingDataFormatParameter).MappedColumn.Name); }
public override bool EquivalentTo(DataFormatParameter other) { return(base.EquivalentTo(other) && ColumnName == (other as GroupByDataFormatParameter).ColumnName); }
public override bool EquivalentTo(DataFormatParameter other) { return(base.EquivalentTo(other) && MetaDataId == (other as MetaDataFormatParameter).MetaDataId); }