mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-26 01:25:42 -05:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user