0
私は、次のピーウィーのモデルがあります:すべてのレコードを検索/列に与えられた単語を含むピーウィーORMモデルの行
class Product(peewee.Model):
key = peewee.IntegerField(unique=True)
name = peewee.CharField(null=False)
is_active = peewee.CharField(null=True)
base_price = peewee.IntegerField(null=True)
が、私はその列「名前」に含まれるすべての製品を検索したいと思いますが単語 "foo"。
- Product.get()で行うことはできますか?
- これは正しい構文ですか?
おかげで、