Comment 6 for bug 387840

Revision history for this message
Stuart Bishop (stub) wrote :

Launchpad needs to be able to do one of:

    store.find(Foo, 'abc' in Foo.bar.lower())
    store.find(Foo, In('abc', Foo.bar.lower()))
    store.find(Foo, Foo.bar.lower().contains('abc')

startswith() will be useful in a few locations too.