private void FindAddedColumns( Tuple <IEntityType, IEntityType> tablePair, IEnumerable <Tuple <IProperty, IProperty> > columnPairs) { _operations.AddRange( tablePair.Item2.Properties .Except(columnPairs.Select(pair => pair.Item2)) .Select(c => OperationFactory.AddColumnOperation(c))); }