DataAccessFramework.Querying.FieldReference.LessThan C# (CSharp) Method

LessThan() public method

public LessThan ( System.DateTime value ) : WherePart
value System.DateTime
return WherePart
        public WherePart LessThan(DateTime value)
        {
            return new LessThanClause(this, new DateTimeConstant(value));
        }