internal bool FilterRow(DataTable table, DataRow newRow, SyncLogItem log_item) { foreach (SyncLinkFilter flt in this) { if (!flt.FilterRow(table, newRow, log_item)) { return(false); } } return(true); }
public override bool FilterRow(DataTable table, DataRow newRow, SyncLogItem log_item) { if (newRow.Table.Columns.Contains(FieldName)) { return(string.Compare(newRow[FieldName].ToString(), FieldValue, true) == 0); } else { return(true); } }
public abstract bool FilterRow(DataTable table, DataRow newRow, SyncLogItem log_item);