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

LeftPropertyValueEqualJoinExpression() public method

For joins that use one field from the Left DAO and compares on a value.
public LeftPropertyValueEqualJoinExpression ( string property, object value ) : System
property string The name of the property on the object returned by the /// Left DAO.
value object The value that the given property is compared to.
return System
        public LeftPropertyValueEqualJoinExpression(string property, object value)
            : this(property, value, true)
        {
        }

Same methods

LeftPropertyValueEqualJoinExpression::LeftPropertyValueEqualJoinExpression ( string property, object value, bool trueOrNot ) : System
LeftPropertyValueEqualJoinExpression