Comments
Sort by recent activity
Hi Allen,
I'm afraid you'll need to be a bit more specific.
Here is what I got so far:
ComparisonSession session = new ComparisonSession();
session.Options = mappings.Options;
foreach (var table in tablesForWhichWeDeployOnlyNewRows)
{
var tableDiffs = session.TableDifferences[table.SchemaQualifiedName];
if (tableDiffs != null)
{
foreach (var row in tableDiffs.ResultsStore)
{
if(row.Type != Row.RowType.In1)
{
//how do I Include/exclude this row?
}
}
}
}
Am I on the right track? How do I exclude those differences/rows? / comments
Hi Allen,
I'm afraid you'll need to be a bit more specific.
Here is what I got so far:
ComparisonSession session = new ComparisonSession();
session.Options = mappings.Options;
...