thel wrote:
Hi All,
I'm a newbie in llblgen. Can anyone help me create the PredicateExpression for where condition
SELECT * FROM tblA Where LEFT(fieldA,11) = 'TS-20081014'
Hope someone will help me. Thanks
I guess doing WHERE fieldA LIKE ''TS-20081014%' is the same, right? You should use FieldLikePredicate then or its shortcut, i.e.:
filter.Add(TblAFields.FieldA % "TS-20081014%");