Archived
Update login migrations nuget with perf improvements (#1789)
* Update login migrations nuget with perf improvements * Add new nuget Co-authored-by: Akshay Mata <akma@microsoft.com>
This commit is contained in:
co-authored by
Akshay Mata
parent
eca0cc484c
commit
996e30cd7f
@@ -13,6 +13,11 @@ namespace Microsoft.SqlTools.ServiceLayer.Migration.Utils
|
||||
{
|
||||
public static void AddExceptions(this IDictionary<string, IEnumerable<ReportableException>> exceptionMap1, IDictionary<string, IEnumerable<ReportableException>> exceptionMap2)
|
||||
{
|
||||
if (exceptionMap1 is null || exceptionMap2 is null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
foreach (var keyValuePair2 in exceptionMap2)
|
||||
{
|
||||
// If the dictionary already contains the key then merge them
|
||||
|
||||
Reference in New Issue
Block a user