I want to select a data where the date is not equal to empty String. How should I write?
With moor 2.1.0 or later, write
select(table)..where((row) => !row.column.length.equals(0))
in an earlier version, you'd have to use
select(table)..where((row) => not(row.column.equals('')))
@simolus3 I used latest version moor_flutter: ^2.1.1
not is deprecated
and using '!' is not working


@amreniouinnovent It should be offlineResponseTable.username.equals(username).not() if I recall correctly.
@kuhnroyal Thanks, works fine
Most helpful comment
@amreniouinnovent It should be
offlineResponseTable.username.equals(username).not()if I recall correctly.