C# 클래스 Habanero.Binding.DataFilter

Public Wrapper for the internal DataExpression class in the .Net framework. The purpose of this class is to test if single DataRows match a given filter expression.
파일 보기 프로젝트 열기: Chillisoft/habanero.binding

공개 메소드들

메소드 설명
DataFilter ( string expression, DataTable dataTable ) : System

Creates a new instance.

Invoke ( DataRow row ) : bool

Tests whether a single DataRow matches the filter expression.

Invoke ( DataRow row, DataRowVersion version ) : bool

Tests whether a single DataRow matches the filter expression.

비공개 메소드들

메소드 설명
DataFilter ( ) : System

메소드 상세

DataFilter() 공개 메소드

Creates a new instance.
public DataFilter ( string expression, DataTable dataTable ) : System
expression string Filter expression string.
dataTable System.Data.DataTable of the rows to be tested.
리턴 System

Invoke() 공개 메소드

Tests whether a single DataRow matches the filter expression.
public Invoke ( DataRow row ) : bool
row System.Data.DataRow to be tested.
리턴 bool

Invoke() 공개 메소드

Tests whether a single DataRow matches the filter expression.
public Invoke ( DataRow row, DataRowVersion version ) : bool
row System.Data.DataRow to be tested.
version DataRowVersion The row version to use.
리턴 bool