LLBLGEN 4.0
LLBLGEN Runtime Framework
Mysql 5.x
C# Windows Application
I created a typed list for table TITLE called TitleTlTypedList with alias T.
This table has a column called FLAG.
Now I want to filter FLAG=0 for which I wrote
filter.Add(new FieldCompareValuePredicate(TitleFields.Flag, ComparisonOperator.Equal,
0));
Since the alias T is used it says FLAG is invalid column. How do i resolve this ?