LLBLgen 3.1 release 1st July MSORACLE (oracle 9i/10g) .NET framework 2.0
bucket.PredicateExpression.Add(new FieldCompareNullPredicate(OrderFields.OrderDate, null));
In this example, how do i check for NOT NULL instead of null ?
There is an overload of the CTor that accepts a boolean arameter (negate), set it to true to produce "NOT NULL"
bucket.PredicateExpression.Add(new FieldCompareNullPredicate(OrderFields.OrderDate, null, true));
Walaa wrote: There is an overload of the CTor that accepts a boolean arameter (negate), set it to true to produce "NOT NULL" bucket.PredicateExpression.Add(new FieldCompareNullPredicate(OrderFields.OrderDate, null, true));
Walaa wrote:
Thanks Walaa