mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-06 09:35:39 -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:
@@ -47,6 +47,15 @@ namespace Microsoft.SqlTools.ServiceLayer.SchemaCompare.Contracts
|
||||
/// </summary>
|
||||
public class SchemaCompareIncludeExcludeResult : ResultStatus
|
||||
{
|
||||
public List<DiffEntry> ChangedDifferences { get; set; }
|
||||
/// <summary>
|
||||
/// Dependencies that may have been affected by the include/exclude request
|
||||
/// </summary>
|
||||
public List<DiffEntry> AffectedDependencies { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Dependencies that caused the include/exclude to fail
|
||||
/// </summary>
|
||||
public List<DiffEntry> BlockingDependencies { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user