Azavea.Open.DAO.Criteria.Joins.AbstractPropertyValueJoinExpression.AbstractPropertyValueJoinExpression C# (CSharp) Method

AbstractPropertyValueJoinExpression() protected method

Base class for joins that use one field from a single DAO and compares on a value.
protected AbstractPropertyValueJoinExpression ( string property, object value, bool trueOrNot )
property string The name of the property on the object returned by the /// DAO that we are comparing.
value object The value that the given property is compared to.
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
        protected AbstractPropertyValueJoinExpression(string property,
            object value, bool trueOrNot)
            : base(trueOrNot)
        {
            Property = property;
            Value = value;
        }
AbstractPropertyValueJoinExpression