C# 클래스 Azavea.Open.DAO.Criteria.PropertyInListExpression

상속: AbstractSinglePropertyExpression
파일 보기 프로젝트 열기: azavea/net-dao

공개 프로퍼티들

프로퍼티 타입 설명
Values IEnumerable

공개 메소드들

메소드 설명
Invert ( ) : IExpression

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.

PropertyInListExpression ( string property, IEnumerable values ) : System

Property is equal to one of the values in the given IEnumerable of values.

PropertyInListExpression ( string property, IEnumerable values, bool trueOrNot ) : System

Property is equal to one of the values in the given IList of values.

메소드 상세

Invert() 공개 메소드

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.
public Invert ( ) : IExpression
리턴 IExpression

PropertyInListExpression() 공개 메소드

Property is equal to one of the values in the given IEnumerable of values.
public PropertyInListExpression ( string property, IEnumerable values ) : System
property string The data class' property/field being compared. /// May not be null.
values IEnumerable The values to check for. /// May not be null. An empty list will always mean "false".
리턴 System

PropertyInListExpression() 공개 메소드

Property is equal to one of the values in the given IList of values.
public PropertyInListExpression ( string property, IEnumerable values, bool trueOrNot ) : System
property string The data class' property/field being compared. /// May not be null.
values IEnumerable The values to check for. /// May not be null. An empty list will always mean "false".
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
리턴 System

프로퍼티 상세

Values 공개적으로 프로퍼티

The values to check for. An empty list will always mean "false".
public IEnumerable Values
리턴 IEnumerable