We’ve also added a SqlFilter option from v4.5.5+ on MyGet which you could use instead, an alternative is to use Custom SQL, e.g:
var q = db.From<Table>()
.Where("AppUserId = {0}", value);
var results = db.Select(q);
We’ve also added a SqlFilter option from v4.5.5+ on MyGet which you could use instead, an alternative is to use Custom SQL, e.g:
var q = db.From<Table>()
.Where("AppUserId = {0}", value);
var results = db.Select(q);