Fix schema compare exclude behaviour (#884)

* Send back dependencies causing the exclude to fail instead of blocking the call

* Separate AffectedDependences and BlockingDependencies into separate properties

* add named parameters

* separate out include/exclude success cases for clarity
This commit is contained in:
Kim Santiago
2019-10-25 18:01:33 -07:00
committed by GitHub
parent 57b7126ccf
commit b9faabb704
4 changed files with 44 additions and 29 deletions

View File

@@ -255,7 +255,8 @@ namespace Microsoft.SqlTools.ServiceLayer.SchemaCompare
{
Success = operation.Success,
ErrorMessage = operation.ErrorMessage,
ChangedDifferences = operation.ChangedDifferences
AffectedDependencies = operation.AffectedDependencies,
BlockingDependencies = operation.BlockingDependencies
});
}
catch (Exception e)