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

IsMatch() public method

public IsMatch ( ) : bool
return bool
        public bool IsMatch()
        {
            _isMatch = true;

            _queryExpression.Accept(this);

            return _isMatch;
        }

Same methods

InMemoryRowMatcher::IsMatch ( string columnName, object value ) : bool

Usage Example

コード例 #1
0
        public void Visit(TranslatedQueryExpressionTreeLeaf tree)
        {
            var matcher = new InMemoryRowMatcher(_row, tree.QueryExpression, tree.TableIdentifier);

            if (!matcher.IsMatch())
                _isMatch = false;
        }
All Usage Examples Of WeenyMapper.QueryExecution.InMemory.InMemoryRowMatcher::IsMatch