WeenyMapper.QueryExecution.InMemory.InMemoryRowMatcher.MatchValue C# (CSharp) Method

MatchValue() private method

private MatchValue ( string columnName, object value ) : void
columnName string
value object
return void
        private void MatchValue(string columnName, object value)
        {
            var isMatch = IsMatch(columnName, value);

            if (!isMatch)
                _isMatch = false;
        }