Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>10.6.3</Version>
<Version>10.6.4</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<Title>XML Provider</Title>
<Description>XML Provider</Description>
Expand Down
9 changes: 1 addition & 8 deletions src/XMLSourceReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,7 @@ public bool IsDone()

private bool RowMatchesConditions()
{
foreach (MappingConditional conditional in _mapping.Conditionals)
{
if (!_provider.CheckCondition(conditional, _nextRow))
{
return false;
}
}
return true;
return _mapping.Conditionals?.CheckConditionals(_nextRow) ?? true;
}

public Dictionary<string, object> GetNext()
Expand Down