You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace predicate with an IEnumerable<DataViewSchema.Column> for IRowToRowMapper.GetRow and ISchemaBoundRowMapper.GetRow (#2796)
* replacing the `Func<int, bool> active` predicate with an `IEnumerable<DataViewSchema.Column> activeColumns` from the IRowToRowMapper.GetRow and the ISchemaBoundRowMapper.GetRow.
renaming col to `columnIndex` in the `DataViewRow.IsColumnActive` and `DataViewRow.GetGetter<TValue>`
* renaming col to columnIndex in all the overrides of IDataView.GetGetter and DataView.IsColumnActive
Documentation.
* Making sure GetRow is an explicit implementation everywhere.
* addressing PR review, and changing the GetGetter method signature, to take a column, rather than column index.
* changing the signature for IsColumnActive to take a DataViewSchema.Column instead of the column index.
0 commit comments