I need my sql query to exclude records that contain an empty string in the Jobtitle column, so I try
query.AppendNotEquals(AdjusterColumn.Jobtitle,String.Empty)
but all the Appendxxx methods first check
if
( !String.IsNullOrEmpty(value) )
so the where clause isn't modified. Is there a better way to accomplish this?
Thanks.